summaryrefslogtreecommitdiff
path: root/db/migrate/20161124111402_add_routes_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20161124111402_add_routes_table.rb')
-rw-r--r--db/migrate/20161124111402_add_routes_table.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20161124111402_add_routes_table.rb b/db/migrate/20161124111402_add_routes_table.rb
new file mode 100644
index 00000000000..a02e046a18e
--- /dev/null
+++ b/db/migrate/20161124111402_add_routes_table.rb
@@ -0,0 +1,18 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddRoutesTable < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def change
+ create_table :routes do |t|
+ t.integer :source_id, null: false
+ t.string :source_type, null: false
+ t.string :path, null: false
+
+ t.timestamps
+ end
+ end
+end