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

20130603144959_create_runner_projects.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c65c8a51bcfa3583385943bdb7b9c8d98868ad1b (plain)
1
2
3
4
5
6
7
8
9
10
class CreateRunnerProjects < ActiveRecord::Migration
  def change
    create_table :runner_projects do |t|
      t.integer :runner_id, null: false
      t.integer :project_id, null: false

      t.timestamps
    end
  end
end