Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130319214458_create_forked_project_links.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f91afc26e77c5424ecf9b299c11933827a4d676b (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateForkedProjectLinks < ActiveRecord::Migration
  def change
    create_table :forked_project_links do |t|
      t.integer :forked_to_project_id, null: false
      t.integer :forked_from_project_id, null: false

      t.timestamps
    end
    add_index :forked_project_links, :forked_to_project_id, unique: true
  end
end