mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
34 lines
1,013 B
Ruby
34 lines
1,013 B
Ruby
|
class AddRulesEngine < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
create_table :rules, id: :uuid do |t|
|
||
|
t.references :family, null: false, foreign_key: true, type: :uuid
|
||
|
|
||
|
t.string :resource_type, null: false
|
||
|
t.date :effective_date
|
||
|
t.boolean :active, null: false, default: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
create_table :rule_conditions, id: :uuid do |t|
|
||
|
t.references :rule, foreign_key: true, type: :uuid
|
||
|
t.references :parent, foreign_key: { to_table: :rule_conditions }, type: :uuid
|
||
|
|
||
|
t.string :condition_type, null: false
|
||
|
t.string :operator, null: false
|
||
|
t.string :value
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
create_table :rule_actions, id: :uuid do |t|
|
||
|
t.references :rule, null: false, foreign_key: true, type: :uuid
|
||
|
|
||
|
t.string :action_type, null: false
|
||
|
t.string :value
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
add_column :users, :rule_prompts_disabled, :boolean, default: false
|
||
|
add_column :users, :rule_prompt_dismissed_at, :datetime
|
||
|
end
|
||
|
end
|