increase url length on topic_embed

This commit is contained in:
Régis Hanol 2015-04-21 11:03:10 +02:00
parent 2cdd967188
commit dc6b2df2a2
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
class IncreaseUrlLengthOnTopicEmbed < ActiveRecord::Migration
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