debian-mirror-gitlab/db/migrate/20170427215854_create_redirect_routes.rb
2019-02-15 15:39:39 +05:30

16 lines
403 B
Ruby

# rubocop:disable Migration/Timestamps
class CreateRedirectRoutes < ActiveRecord::Migration[4.2]
# 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