fix(frm): add new column frm_config instead of alterning the existing… (#1925)

This commit is contained in:
Jagan
2023-08-11 18:36:40 +05:30
committed by GitHub
parent e6de4fc2c4
commit 8d916feb3f
6 changed files with 30 additions and 13 deletions

View File

@ -424,10 +424,11 @@ diesel::table! {
business_label -> Varchar,
#[max_length = 64]
business_sub_label -> Nullable<Varchar>,
frm_configs -> Nullable<Array<Nullable<Jsonb>>>,
frm_configs -> Nullable<Jsonb>,
created_at -> Timestamp,
modified_at -> Timestamp,
connector_webhook_details -> Nullable<Jsonb>,
frm_config -> Nullable<Array<Nullable<Jsonb>>>,
}
}