aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/db
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-12 02:33:38 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-08-12 02:33:38 +0900
commitd76b2f9e55b931edab661a096c91dc05ce3fe9da (patch)
tree67af65d12d8a0b023a8e94a0ee234f9d304c90ff /activestorage/db
parentde80aa641290a03c023d00d2ffca368026335fe4 (diff)
downloadrails-d76b2f9e55b931edab661a096c91dc05ce3fe9da.tar.gz
rails-d76b2f9e55b931edab661a096c91dc05ce3fe9da.tar.bz2
rails-d76b2f9e55b931edab661a096c91dc05ce3fe9da.zip
Add `null: false` to Active Storage tables
These columns aren't intended nullable.
Diffstat (limited to 'activestorage/db')
-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