annotate db/migrate/20130201150322_add_key_to_paste.rb @ 258:ceb44fca8b4a

Welcome to bootstrap 3.
author edogawaconan <me@myconan.net>
date Tue, 15 Oct 2013 21:51:31 +0900
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