This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-12 03:37:14 -07:00
|
|
|
class CreateAccountSummaries < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
2021-05-07 09:14:29 -07:00
|
|
|
create_view :account_summaries, materialized: { no_data: true }
|
2021-04-12 03:37:14 -07:00
|
|
|
|
|
|
|
# To be able to refresh the view concurrently,
|
|
|
|
# at least one unique index is required
|
|
|
|
safety_assured { add_index :account_summaries, :account_id, unique: true }
|
|
|
|
end
|
|
|
|
end
|