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/20130531125905_create_runners.rb')
-rw-r--r--db/ci/migrate/20130531125905_create_runners.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/ci/migrate/20130531125905_create_runners.rb b/db/ci/migrate/20130531125905_create_runners.rb
new file mode 100644
index 00000000000..2619394f51b
--- /dev/null
+++ b/db/ci/migrate/20130531125905_create_runners.rb
@@ -0,0 +1,10 @@
+class CreateRunners < ActiveRecord::Migration
+ def change
+ create_table :runners do |t|
+ t.string :token
+ t.text :public_key
+
+ t.timestamps
+ end
+ end
+end