20151103134857_create_lfs_objects.rb 272 Bytes
Newer Older
1
# rubocop:disable all
Marin Jankovski's avatar
Marin Jankovski committed
2
class CreateLfsObjects < ActiveRecord::Migration
3 4
  DOWNTIME = false

Marin Jankovski's avatar
Marin Jankovski committed
5 6 7 8 9
  def change
    create_table :lfs_objects do |t|
      t.string :oid, null: false, unique: true
      t.integer :size, null: false

10
      t.timestamps null: true
Marin Jankovski's avatar
Marin Jankovski committed
11 12 13
    end
  end
end