class ActiveRecord::ConnectionAdapters::SQLite3::TableDefinition
Active Record SQLite3 Adapter Table Definition¶ ↑
Public Instance Methods
Source
# File lib/active_record/connection_adapters/sqlite3/schema_definitions.rb, line 8 def change_column(column_name, type, **options) name = column_name.to_s @columns_hash[name] = nil column(name, type, **options) end
Source
# File lib/active_record/connection_adapters/sqlite3/schema_definitions.rb, line 14 def references(*args, **options) super(*args, type: :integer, **options) end
Calls superclass method
ActiveRecord::ConnectionAdapters::TableDefinition#references
Also aliased as: belongs_to