2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2015-11-26 14:37:03 +05:30
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|