2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-10-12 10:42:14 -04:00
|
|
|
class CreateLfsObjectsProjects < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :lfs_objects_projects do |t|
|
|
|
|
t.integer :lfs_object_id, null: false
|
|
|
|
t.integer :project_id, null: false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :lfs_objects_projects, :project_id
|
|
|
|
end
|
|
|
|
end
|