Active Record SQLite3
适配器表定义
方法
实例公共方法
change_column(column_name, type, **options) 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/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
references(*args, **options) 链接
也称为别名: belongs_to
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb, line 14 def references(*args, **options) super(*args, type: :integer, **options) end