Module: SQL::Mysql

Defined in:
lib/sql/mysql.rb

Defined Under Namespace

Classes: Column, Table

Instance Method Summary collapse

Instance Method Details

#property_schema_statement(schema) ⇒ Object

TODO: move to dm-more/dm-migrations



25
26
27
28
29
30
31
# File 'lib/sql/mysql.rb', line 25

def property_schema_statement(schema)
  if supports_serial? && schema[:serial]
    statement = "#{schema[:quote_column_name]} serial PRIMARY KEY"
  else
    super
  end
end

#recreate_databaseObject



14
15
16
17
18
# File 'lib/sql/mysql.rb', line 14

def recreate_database
  execute "DROP DATABASE #{db_name}"
  execute "CREATE DATABASE #{db_name}"
  execute "USE #{db_name}"
end

#supports_schema_transactions?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/sql/mysql.rb', line 6

def supports_schema_transactions?
  false
end

#supports_serial?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/sql/mysql.rb', line 20

def supports_serial?
  true
end

#table(table_name) ⇒ Object



10
11
12
# File 'lib/sql/mysql.rb', line 10

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