view db/migrate/20120905072325_set_limit_on_paste.rb @ 171:3e5055f2e715

No need for tmp/ by default. Will probably break stuff.
author Edho Arief <edho@myconan.net>
date Sat, 05 Jan 2013 02:46:49 +0400
parents 3c31c0beb9c2
children 682abad78313
line wrap: on
line source

class SetLimitOnPaste < ActiveRecord::Migration
  def change
    change_table :pastes do |t|
      t.change :ip, :string, :limit => 50
      t.change :paste_hash, :string, :limit => 150
    end
  end
end