2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class IncreaseUrlLengthOnTopicEmbed < ActiveRecord::Migration[4.2]
|
2015-04-21 05:03:10 -04:00
|
|
|
def up
|
|
|
|
remove_index :topic_embeds, :embed_url
|
|
|
|
change_column :topic_embeds, :embed_url, :string, limit: 1000, null: false
|
|
|
|
add_index :topic_embeds, :embed_url, unique: true
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
end
|
|
|
|
end
|