add framework for post update pushes to pubsub
This commit is contained in:
9
db/migrate/20160820003534_create_post_updates.rb
Normal file
9
db/migrate/20160820003534_create_post_updates.rb
Normal 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
|
||||
Reference in New Issue
Block a user