view db/migrate/20130512032335_add_index_to_pastes_secret.rb @ 478:46ed68bf9918

Add more length check
author nanaya <me@nanaya.pro>
date Sat, 10 Oct 2020 18:14:57 +0900
parents 4608d12ebe03
children
line wrap: on
line source

# Speed up lookup.
class AddIndexToPastesSecret < ActiveRecord::Migration[4.2]
  def change
    add_index :pastes, :secret
  end
end