mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-23 18:02:59 +01:00
7 lines
143 B
Ruby
7 lines
143 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexAccountsOnUri < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_index :accounts, :uri
|
|
end
|
|
end
|