Method: Sequel::Database#alter_table_sql_list
- Defined in:
- lib/sequel/database/schema_sql.rb
#alter_table_sql_list(table, operations) ⇒ Object
Array of SQL DDL modification statements for the given table, corresponding to the DDL changes specified by the operations.
56 57 58 |
# File 'lib/sequel/database/schema_sql.rb', line 56 def alter_table_sql_list(table, operations) operations.map{|op| alter_table_sql(table, op)} end |