Created
January 28, 2025 21:57
-
-
Save broguinn/560daa8defc32808a544c423e7678e9c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/cloud/db/resources/seed/local.sql b/cloud/db/resources/seed/local.sql | |
index f8a94e48d..d8fe27f9d 100644 | |
--- a/cloud/db/resources/seed/local.sql | |
+++ b/cloud/db/resources/seed/local.sql | |
@@ -163,7 +163,7 @@ VALUES | |
INSERT INTO | |
gateway_config (gateway_serial, config_json) | |
VALUES | |
- (_GATEWAY_ID, '{}') ON CONFLICT (gateway_serial) DO NOTHING; | |
+ (_GATEWAY_ID, '{ "enable_automatic_backup": true }') ON CONFLICT (gateway_serial) DO NOTHING; | |
-- Create Documents | |
SELECT | |
@@ -339,7 +339,7 @@ VALUES | |
( | |
NOW() - INTERVAL '6' MONTH, | |
NOW() + INTERVAL '6' MONTH, | |
- 1, | |
+ _SERVICE_LOCATION_ID, | |
_STRIPE_PAYMENT_METHOD_ID, | |
'seed-plan', | |
_ES_ID, | |
@@ -367,7 +367,8 @@ INSERT INTO | |
stripe_payment_method_id, | |
service_start, | |
service_location_id, | |
- rep_metadata_id | |
+ rep_metadata_id, | |
+ move_in_priority | |
) | |
VALUES | |
( | |
@@ -377,8 +378,9 @@ VALUES | |
'seed-plan', | |
_STRIPE_PAYMENT_METHOD_ID, | |
NOW(), | |
- 1, | |
- _REP_METADATA_ID | |
+ _SERVICE_LOCATION_ID, | |
+ _REP_METADATA_ID, | |
+ 'STANDARD' | |
); | |
END IF; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment