2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 09:57:31 +00:00
moebooru/db/migrate/089_add_index_on_post_source.rb

10 lines
168 B
Ruby
Raw Permalink Normal View History

class AddIndexOnPostSource < ActiveRecord::Migration[5.1]
def self.up
add_index :posts, :source
end
def self.down
remove_index :posts, :source
end
end