summaryrefslogtreecommitdiff
path: root/db/migrate/20151103134857_create_lfs_objects.rb
blob: fadaf637cec48b10a3e511e102692438b8daa8ca (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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