debian-mirror-gitlab/db/migrate/20151103134857_create_lfs_objects.rb

14 lines
272 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-11-26 14:37:03 +05:30
class CreateLfsObjects < ActiveRecord::Migration
2017-01-15 13:20:01 +05:30
DOWNTIME = false
2015-11-26 14:37:03 +05:30
def change
create_table :lfs_objects do |t|
t.string :oid, null: false, unique: true
t.integer :size, null: false
2017-08-17 22:00:37 +05:30
t.timestamps null: true
2015-11-26 14:37:03 +05:30
end
end
end