annotate db/migrate/20130201150322_add_key_to_paste.rb @ 242:720ef40cb4bb

Don't break word in weird way. ...I think.
author Edho Arief <edho@myconan.net>
date Fri, 09 Aug 2013 08:39:59 +0000
parents a9dba6a3008b
children 682abad78313
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
176
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 class AddKeyToPaste < ActiveRecord::Migration
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 def change
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 add_column :pastes, :key, :string
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 end
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end