annotate db/migrate/20130511133450_add_secret_to_pastes.rb @ 255:a894d7696b7e

More useful return of Paste.fix_all.
author edogawaconan <me@myconan.net>
date Mon, 14 Oct 2013 17:49:52 +0000
parents ee7829c7c2a2
children 682abad78313
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
207
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 class AddSecretToPastes < ActiveRecord::Migration
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 def change
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 add_column :pastes, :secret, :string
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 end
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end