Method: Sequel::ADO::Access::DatabaseMethods#alter_table
- Defined in:
- lib/sequel/adapters/ado/access.rb
permalink #alter_table(name) ⇒ Object
Remove cached schema after altering a table, since otherwise it can be cached incorrectly in the rename column case.
95 96 97 98 99 |
# File 'lib/sequel/adapters/ado/access.rb', line 95 def alter_table(name, *) super remove_cached_schema(name) nil end |