Files
danbooru/db/migrate/20160820003534_create_post_updates.rb
2016-08-19 17:51:47 -07:00

10 lines
237 B
Ruby

class CreatePostUpdates < ActiveRecord::Migration
def up
execute "create unlogged table post_updates ( post_id integer, constraint unique_post_id unique(post_id) )"
end
def down
execute "drop table post_updates"
end
end