annotate db/migrate/20130511133450_add_secret_to_pastes.rb @ 319:4944db0f98d8

Add basic hooves config.
author edogawaconan <me@myconan.net>
date Sun, 06 Apr 2014 01:23:15 +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