debian-mirror-gitlab/db/migrate/20170427215854_create_redirect_routes.rb
2017-08-17 22:00:37 +05:30

15 lines
359 B
Ruby

class CreateRedirectRoutes < ActiveRecord::Migration
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
create_table :redirect_routes do |t|
t.integer :source_id, null: false
t.string :source_type, null: false
t.string :path, null: false
t.timestamps null: false
end
end
end