Mercurial > zeropaste
annotate db/migrate/20130201150322_add_key_to_paste.rb @ 373:6e3e1e7b0212
Handle unique error in model instead of controller.
author | nanaya <me@myconan.net> |
---|---|
date | Sat, 06 Jun 2015 22:12:56 +0900 |
parents | 682abad78313 |
children | 4608d12ebe03 |
rev | line source |
---|---|
333
682abad78313
Documentation and line length.
edogawaconan <me@myconan.net>
parents:
176
diff
changeset
|
1 # For deletion. |
176
a9dba6a3008b
Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff
changeset
|
2 class AddKeyToPaste < ActiveRecord::Migration |
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 |