10 lines
242 B
Ruby
10 lines
242 B
Ruby
class CreatePostUpdates < ActiveRecord::Migration[4.2]
|
|
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
|