1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-23 22:57:05 +09:00
YuruToot/db/migrate/20170516072309_add_index_accounts_on_uri.rb

8 lines
143 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddIndexAccountsOnUri < ActiveRecord::Migration[5.0]
def change
add_index :accounts, :uri
end
end