debian-mirror-gitlab/db/migrate/20170427215854_create_redirect_routes.rb

16 lines
403 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
# rubocop:disable Migration/Timestamps
2019-02-15 15:39:39 +05:30
class CreateRedirectRoutes < ActiveRecord::Migration[4.2]
2017-08-17 22:00:37 +05:30
# 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