2023-02-19 15:08:46 +00:00
|
|
|
class CreateCustomUrls < ActiveRecord::Migration[4.2]
|
2017-11-09 19:57:05 +00:00
|
|
|
def change
|
|
|
|
create_table :custom_urls do |t|
|
|
|
|
t.string :name
|
|
|
|
t.references :article
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
add_index :custom_urls, :name
|
|
|
|
add_index :custom_urls, :article_id
|
|
|
|
end
|
|
|
|
end
|