add framework for post update pushes to pubsub

This commit is contained in:
r888888888
2016-08-19 17:51:47 -07:00
parent 5de9adf0f5
commit 3c42df51c9
5 changed files with 56 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
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