summaryrefslogtreecommitdiff
path: root/db/migrate/20151103134958_create_lfs_objects_projects.rb
blob: 6f8488463b09db974ca3cb7008d76aa5222ab516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# rubocop:disable all
class CreateLfsObjectsProjects < ActiveRecord::Migration[4.2]
  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