annotate db/migrate/20130511133450_add_secret_to_pastes.rb @ 366:26545fe719ca

Remove caching system. Too much complexity for something that is really simple.
author edogawaconan <me@myconan.net>
date Sat, 14 Feb 2015 01:35:45 +0900
parents 682abad78313
children 4608d12ebe03
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
333
682abad78313 Documentation and line length.
edogawaconan <me@myconan.net>
parents: 207
diff changeset
1 # Private paste column.
207
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 class AddSecretToPastes < ActiveRecord::Migration
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 def change
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 add_column :pastes, :secret, :string
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end
ee7829c7c2a2 Prepare for private pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
6 end