BigW Consortium Gitlab

20151103134857_create_lfs_objects.rb 252 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6 7
class CreateLfsObjects < ActiveRecord::Migration
  def change
    create_table :lfs_objects do |t|
      t.string :oid, null: false, unique: true
      t.integer :size, null: false

8
      t.timestamps null: true
9 10 11
    end
  end
end