discourse/db/migrate/20140828200231_make_url_col...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
286 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class MakeUrlColBiggerInPermalinks < ActiveRecord::Migration[4.2]
def up
remove_index :permalinks, :url
change_column :permalinks, :url, :string, limit: 1000, null: false
add_index :permalinks, :url, unique: true
end
def down
end
end