summaryrefslogtreecommitdiff
path: root/db/migrate/20151103134958_create_lfs_objects_projects.rb
blob: 5af1c39fd9cfcf7e7a49895b3759b9e7e7c02d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# rubocop:disable all
class CreateLfsObjectsProjects < ActiveRecord::Migration
  DOWNTIME = false

  def change
    create_table :lfs_objects_projects do |t|
      t.integer :lfs_object_id, null: false
      t.integer :project_id, null: false

      t.timestamps null: true
    end

    add_index :lfs_objects_projects, :project_id
  end
end