mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-21 18:46:10 +10:00
13 lines
289 B
Ruby
13 lines
289 B
Ruby
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
|