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
path: root/db
diff options
context:
space:
mode:
authormiks <miks@cubesystems.lv>2011-12-29 23:44:16 +0400
committermiks <miks@cubesystems.lv>2011-12-29 23:44:16 +0400
commit723104c45f83937cd87bee87ac16d3dfc6ce4d88 (patch)
tree1b104bcea9ad4cfef2e0459bfb45d3e21d59a462 /db
parent53ce00f74af1d0ac244b718b157f7f1c876e97a2 (diff)
Initial deploy_key feature commit
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20111225202855_create_deploy_keys.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20111225202855_create_deploy_keys.rb b/db/migrate/20111225202855_create_deploy_keys.rb
new file mode 100644
index 00000000000..60e7337504e
--- /dev/null
+++ b/db/migrate/20111225202855_create_deploy_keys.rb
@@ -0,0 +1,12 @@
+class CreateDeployKeys < ActiveRecord::Migration
+ def change
+ create_table :deploy_keys do |t|
+ t.integer "project_id", :null => false
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ t.text "key"
+ t.string "title"
+ t.string "identifier"
+ end
+ end
+end