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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/ci/migrate/20130603144959_create_runner_projects.rb')
-rw-r--r--db/ci/migrate/20130603144959_create_runner_projects.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/ci/migrate/20130603144959_create_runner_projects.rb b/db/ci/migrate/20130603144959_create_runner_projects.rb
new file mode 100644
index 00000000000..c65c8a51bcf
--- /dev/null
+++ b/db/ci/migrate/20130603144959_create_runner_projects.rb
@@ -0,0 +1,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