a59e75a17f
Signed-off-by: Rémy Coutable <remy@rymai.me>
15 lines
342 B
Ruby
15 lines
342 B
Ruby
# 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
|