annotate db/migrate/20130511133450_add_secret_to_pastes.rb @ 326:9193eb99eaf0

Fix name.
author edogawaconan <me@myconan.net>
date Mon, 07 Apr 2014 15:56:58 +0900
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