summaryrefslogtreecommitdiff
path: root/db/migrate/20160727191041_create_boards.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160727191041_create_boards.rb')
-rw-r--r--db/migrate/20160727191041_create_boards.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20160727191041_create_boards.rb b/db/migrate/20160727191041_create_boards.rb
new file mode 100644
index 00000000000..56afbd4e030
--- /dev/null
+++ b/db/migrate/20160727191041_create_boards.rb
@@ -0,0 +1,13 @@
+class CreateBoards < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def change
+ create_table :boards do |t|
+ t.references :project, index: true, foreign_key: true, null: false
+
+ t.timestamps null: false
+ end
+ end
+end