aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-08-11 14:54:33 -0400
committerGitHub <noreply@github.com>2017-08-11 14:54:33 -0400
commit9774322246971737329b3d4c15d3a9796d658c2e (patch)
tree1753029113882b24d7e842248b91ef02794e1565 /activestorage
parent8f5e8886179f7cbc162f546a7d73f55d9296e06c (diff)
parentd76b2f9e55b931edab661a096c91dc05ce3fe9da (diff)
downloadrails-9774322246971737329b3d4c15d3a9796d658c2e.tar.gz
rails-9774322246971737329b3d4c15d3a9796d658c2e.tar.bz2
rails-9774322246971737329b3d4c15d3a9796d658c2e.zip
Merge pull request #30202 from kamipo/add_null_false_to_active_storage_tables
Add `null: false` to Active Storage tables
Diffstat (limited to 'activestorage')
-rw-r--r--activestorage/db/migrate/20170806125915_create_active_storage_tables.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb b/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb
index 6eab7e0fa0..2c7e3c5bc6 100644
--- a/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb
+++ b/activestorage/db/migrate/20170806125915_create_active_storage_tables.rb
@@ -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