c33b489853
This is to ensure that migrations will still be consitent when we will upgrade to Rails 5 which default to `null: false` for timestamps columns. Fixes #23666. Signed-off-by: Rémy Coutable <remy@rymai.me>
11 lines
252 B
Ruby
11 lines
252 B
Ruby
# rubocop:disable all
|
|
class CreateLfsObjects < ActiveRecord::Migration
|
|
def change
|
|
create_table :lfs_objects do |t|
|
|
t.string :oid, null: false, unique: true
|
|
t.integer :size, null: false
|
|
|
|
t.timestamps null: true
|
|
end
|
|
end
|
|
end
|