annotate db/migrate/20120905072325_set_limit_on_paste.rb @ 101:17f682a53b13

Added horizontal line because I can.
author Edho Arief <edho@myconan.net>
date Mon, 12 Nov 2012 11:09:25 +0700
parents 3c31c0beb9c2
children 682abad78313
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 class SetLimitOnPaste < ActiveRecord::Migration
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 def change
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 change_table :pastes do |t|
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 t.change :ip, :string, :limit => 50
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 t.change :paste_hash, :string, :limit => 150
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
6 end
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
7 end
3c31c0beb9c2 Set proper limit.
Edho Arief <edho@myconan.net>
parents:
diff changeset
8 end