Skip to content

Commit

Permalink
Merge pull request #30202 from kamipo/add_null_false_to_active_storag…
Browse files Browse the repository at this point in the history
…e_tables

Add `null: false` to Active Storage tables
  • Loading branch information
rafaelfranca committed Aug 11, 2017
2 parents 8f5e888 + d76b2f9 commit 9774322
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
class CreateActiveStorageTables < ActiveRecord::Migration[5.1]
def change
create_table :active_storage_blobs do |t|
t.string :key
t.string :filename
t.string :key, null: false
t.string :filename, null: false
t.string :content_type
t.text :metadata
t.integer :byte_size
t.string :checksum
t.datetime :created_at
t.integer :byte_size, null: false
t.string :checksum, null: false
t.datetime :created_at, null: false

t.index [ :key ], unique: true
end

create_table :active_storage_attachments do |t|
t.string :name
t.string :record_type
t.integer :record_id
t.integer :blob_id
t.string :name, null: false
t.string :record_type, null: false
t.integer :record_id, null: false
t.integer :blob_id, null: false

t.datetime :created_at
t.datetime :created_at, null: false

t.index :blob_id
t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
Expand Down

0 comments on commit 9774322

Please sign in to comment.