annotate db/migrate/20130201150322_add_key_to_paste.rb @ 254:bcca41003e84

Use postgres 'cuz mysql is shit. - utf8 isn't utf8 (hint: utf8mb4) - index key too loooooooooooong Nope.
author edogawaconan <me@myconan.net>
date Tue, 15 Oct 2013 01:47:19 +0900
parents a9dba6a3008b
children 682abad78313
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
176
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 class AddKeyToPaste < ActiveRecord::Migration
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 def change
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 add_column :pastes, :key, :string
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 end
a9dba6a3008b Initial work to add paste deletion.
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end