Method: Sequel::SQLite::DatabaseMethods#alter_table
- Defined in:
- lib/sequel_core/adapters/shared/sqlite.rb
#alter_table(name, generator = nil, &block) ⇒ Object
Run all alter_table commands in a transaction. This is technically only needed for drop column.
14 15 16 |
# File 'lib/sequel_core/adapters/shared/sqlite.rb', line 14 def alter_table(name, generator=nil, &block) transaction{super} end |