summaryrefslogtreecommitdiff
path: root/db/ci/migrate/20121101121639_add_token_to_project.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/ci/migrate/20121101121639_add_token_to_project.rb')
-rw-r--r--db/ci/migrate/20121101121639_add_token_to_project.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/ci/migrate/20121101121639_add_token_to_project.rb b/db/ci/migrate/20121101121639_add_token_to_project.rb
new file mode 100644
index 00000000000..bb66677b6b1
--- /dev/null
+++ b/db/ci/migrate/20121101121639_add_token_to_project.rb
@@ -0,0 +1,5 @@
+class AddTokenToProject < ActiveRecord::Migration
+ def change
+ add_column :projects, :token, :string, null: true
+ end
+end