From 1460fa6fd73cc82e9688c64adc9012f72060c237 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Wed, 12 Apr 2023 13:13:51 -0700 Subject: [PATCH] Add ppc field to job lines. --- .../down.sql | 4 ++++ .../up.sql | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/down.sql create mode 100644 hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/up.sql diff --git a/hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/down.sql b/hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/down.sql new file mode 100644 index 000000000..641b06fc4 --- /dev/null +++ b/hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/down.sql @@ -0,0 +1,4 @@ +-- Could not auto-generate a down migration. +-- Please write an appropriate down migration for the SQL below: +-- alter table "public"."joblines" add column "act_price_before_ppc" numeric +-- null; diff --git a/hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/up.sql b/hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/up.sql new file mode 100644 index 000000000..c817ce67a --- /dev/null +++ b/hasura/migrations/1679343513178_alter_table_public_joblines_add_column_act_price_before_ppc/up.sql @@ -0,0 +1,2 @@ +alter table "public"."joblines" add column "act_price_before_ppc" numeric + null;