Add feature wrapper to Audit.

This commit is contained in:
Patrick Fic
2024-04-24 08:59:23 -07:00
parent b1d8c036e7
commit 09b5fca3b3
10 changed files with 161 additions and 85 deletions

View File

@@ -29,6 +29,7 @@ select_permissions:
columns:
- accepted_ins_co
- created_at
- features
- groups
- id
- ppd_diff_alert

View File

@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."bodyshops" add column "features" jsonb
-- null default jsonb_build_object();

View File

@@ -0,0 +1,2 @@
alter table "public"."bodyshops" add column "features" jsonb
null default jsonb_build_object();