rename stories.short_id index to avoid conflict in non-mysql dbs

this was never added from a migration anyway, so this is just for a
rake:schema:load
This commit is contained in:
joshua stein 2014-02-27 11:31:39 -06:00
parent 87d4b8797f
commit ca3ae40e29

View file

@ -107,7 +107,7 @@ ActiveRecord::Schema.define(version: 20140221164400) do
add_index "stories", ["hotness"], name: "hotness_idx", using: :btree
add_index "stories", ["is_expired", "is_moderated"], name: "is_idxes", using: :btree
add_index "stories", ["short_id"], name: "short_id", unique: true, using: :btree
add_index "stories", ["short_id"], name: "unique_short_id", unique: true, using: :btree
add_index "stories", ["url"], name: "url", length: {"url"=>191}, using: :btree
create_table "tag_filters", force: true do |t|