Add migrations that were not created for previous tickets.

This commit is contained in:
Patrick Fic
2022-04-13 16:32:51 -07:00
parent 75b2cb18ca
commit 2b537b65dd
8 changed files with 4730 additions and 4703 deletions

View File

@@ -0,0 +1 @@
{}

View File

@@ -804,6 +804,7 @@
- appt_colors
- appt_length
- attach_pdf_to_email
- bill_allow_post_to_closed
- bill_tax_rates
- cdk_configuration
- cdk_dealerid
@@ -895,6 +896,7 @@
- appt_colors
- appt_length
- attach_pdf_to_email
- bill_allow_post_to_closed
- bill_tax_rates
- cdk_configuration
- city
@@ -2688,6 +2690,7 @@
- asgn_date
- asgn_no
- asgn_type
- auto_add_ats
- ca_bc_pvrt
- ca_customer_gst
- ca_gst_registrant
@@ -2847,6 +2850,7 @@
- policy_no
- production_vars
- queued_for_parts
- rate_ats
- rate_la1
- rate_la2
- rate_la3
@@ -2948,6 +2952,7 @@
- asgn_date
- asgn_no
- asgn_type
- auto_add_ats
- ca_bc_pvrt
- ca_customer_gst
- ca_gst_registrant
@@ -3107,6 +3112,7 @@
- policy_no
- production_vars
- queued_for_parts
- rate_ats
- rate_la1
- rate_la2
- rate_la3
@@ -3218,6 +3224,7 @@
- asgn_date
- asgn_no
- asgn_type
- auto_add_ats
- ca_bc_pvrt
- ca_customer_gst
- ca_gst_registrant
@@ -3377,6 +3384,7 @@
- policy_no
- production_vars
- queued_for_parts
- rate_ats
- rate_la1
- rate_la2
- rate_la3

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 "bill_allow_post_to_closed" boolean
-- not null default 'false';

View File

@@ -0,0 +1,2 @@
alter table "public"."bodyshops" add column "bill_allow_post_to_closed" boolean
not null default 'false';

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"."jobs" add column "auto_add_ats" boolean
-- null default 'false';

View File

@@ -0,0 +1,2 @@
alter table "public"."jobs" add column "auto_add_ats" boolean
null default 'false';

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"."jobs" add column "rate_ats" numeric
-- null;

View File

@@ -0,0 +1,2 @@
alter table "public"."jobs" add column "rate_ats" numeric
null;