1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 03:09:43 +00:00
discourse/db/migrate/20140828200231_make_url_col_bigger_in_permalinks.rb

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