annotate db/migrate/20130201150322_add_key_to_paste.rb @ 485:6cac8fcf8164

Update to rails 7 (and ruby 3.1)
author nanaya <me@nanaya.pro>
date Sat, 15 Jan 2022 02:07:02 +0900
parents 4608d12ebe03
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
333
682abad78313 Documentation and line length.
edogawaconan <me@myconan.net>
parents: 176
diff changeset
1 # For deletion.
463
4608d12ebe03 Sync database
nanaya <me@nanaya.pro>
parents: 333
diff changeset
2 class AddKeyToPaste < ActiveRecord::Migration[4.2]
176
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 def change
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 add_column :pastes, :key, :string
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
6 end