Module: SQL::Sqlite3

Defined in:
lib/mack-data_mapper/dm_patches/migrations.rb,
lib/gems/dm-migrations-0.9.7/lib/sql/sqlite3.rb

Overview

:nodoc:

Defined Under Namespace

Classes: Column, Table

Instance Method Summary collapse

Instance Method Details

#property_schema_statement(schema) ⇒ Object



14
15
16
17
18
# File 'lib/mack-data_mapper/dm_patches/migrations.rb', line 14

def property_schema_statement(schema)
  statement = super
  statement << ' PRIMARY KEY AUTOINCREMENT' if supports_serial? && schema[:serial]
  statement
end

#recreate_databaseObject



14
15
16
17
18
# File 'lib/gems/dm-migrations-0.9.7/lib/sql/sqlite3.rb', line 14

def recreate_database
  DataMapper.logger.info "Dropping #{@uri.path}"
  system "rm #{@uri.path}"
  # do nothing, sqlite will automatically create the database file
end

#supports_schema_transactions?Boolean

Returns:



6
7
8
# File 'lib/gems/dm-migrations-0.9.7/lib/sql/sqlite3.rb', line 6

def supports_schema_transactions?
  true
end

#supports_serial?Boolean

Returns:



20
21
22
# File 'lib/gems/dm-migrations-0.9.7/lib/sql/sqlite3.rb', line 20

def supports_serial?
  true
end

#table(table_name) ⇒ Object



10
11
12
# File 'lib/gems/dm-migrations-0.9.7/lib/sql/sqlite3.rb', line 10

def table(table_name)
  SQL::Sqlite3::Table.new(self, table_name)
end