Update 20200710130615_add_pro_users_feed_materialized_view.rb
This commit is contained in:
parent
d5293c2e1d
commit
02c71b8af9
|
@ -1,13 +1,15 @@
|
|||
class AddProUsersFeedMaterializedView < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
execute <<-SQL
|
||||
CREATE MATERIALIZED VIEW pro_feed_users_matview AS
|
||||
SELECT id
|
||||
FROM accounts
|
||||
WHERE accounts.is_investor=true
|
||||
OR accounts.is_donor=true
|
||||
OR accounts.is_verified=true
|
||||
OR accounts.is_pro=true
|
||||
SQL
|
||||
safety_assured {
|
||||
execute <<-SQL
|
||||
CREATE MATERIALIZED VIEW pro_feed_users_matview AS
|
||||
SELECT id
|
||||
FROM accounts
|
||||
WHERE accounts.is_investor=true
|
||||
OR accounts.is_donor=true
|
||||
OR accounts.is_verified=true
|
||||
OR accounts.is_pro=true
|
||||
SQL
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue