view db/migrate/20120905072325_set_limit_on_paste.rb @ 477:7a20b4906267

Update gems
author nanaya <me@nanaya.pro>
date Sat, 10 Oct 2020 18:13:56 +0900
parents 4608d12ebe03
children
line wrap: on
line source

# Reduced size as needed.
class SetLimitOnPaste < ActiveRecord::Migration[4.2]
  def change
    change_table :pastes do |t|
      t.change :ip, :string, :limit => 50
      t.change :paste_hash, :string, :limit => 150
    end
  end
end