1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add null: false to Active Storage tables

These columns aren't intended nullable.
This commit is contained in:
Ryuta Kamizono 2017-08-12 02:33:38 +09:00
parent de80aa6412
commit d76b2f9e55

View file

@ -1,24 +1,24 @@
class CreateActiveStorageTables < ActiveRecord::Migration[5.1] class CreateActiveStorageTables < ActiveRecord::Migration[5.1]
def change def change
create_table :active_storage_blobs do |t| create_table :active_storage_blobs do |t|
t.string :key t.string :key, null: false
t.string :filename t.string :filename, null: false
t.string :content_type t.string :content_type
t.text :metadata t.text :metadata
t.integer :byte_size t.integer :byte_size, null: false
t.string :checksum t.string :checksum, null: false
t.datetime :created_at t.datetime :created_at, null: false
t.index [ :key ], unique: true t.index [ :key ], unique: true
end end
create_table :active_storage_attachments do |t| create_table :active_storage_attachments do |t|
t.string :name t.string :name, null: false
t.string :record_type t.string :record_type, null: false
t.integer :record_id t.integer :record_id, null: false
t.integer :blob_id t.integer :blob_id, null: false
t.datetime :created_at t.datetime :created_at, null: false
t.index :blob_id t.index :blob_id
t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true