feat(follow-location): wip
All checks were successful
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 2m13s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 2m3s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 1m50s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 43s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 2m7s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 1m59s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 1m59s
/ deploy (push) Successful in 10s
All checks were successful
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 2m13s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 2m3s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 1m50s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 43s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 2m7s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 1m59s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 1m59s
/ deploy (push) Successful in 10s
This commit is contained in:
parent
d152a564ee
commit
7ee0a75b50
7 changed files with 33 additions and 0 deletions
|
@ -41,6 +41,12 @@ configuration:
|
|||
custom_name: initialLocation
|
||||
keep_open_at:
|
||||
custom_name: keepOpenAt
|
||||
last_address:
|
||||
custom_name: lastAddress
|
||||
last_nearest_place:
|
||||
custom_name: lastNearestPlace
|
||||
last_what3words:
|
||||
custom_name: lastWhat3Words
|
||||
nearest_place:
|
||||
custom_name: nearestPlace
|
||||
notified_count:
|
||||
|
@ -81,6 +87,9 @@ configuration:
|
|||
follow_location_ran: followLocationRan
|
||||
initial_location: initialLocation
|
||||
keep_open_at: keepOpenAt
|
||||
last_address: lastAddress
|
||||
last_nearest_place: lastNearestPlace
|
||||
last_what3words: lastWhat3Words
|
||||
nearest_place: nearestPlace
|
||||
notified_count: notifiedCount
|
||||
notify_around: notifyAround
|
||||
|
@ -143,6 +152,9 @@ select_permissions:
|
|||
- id
|
||||
- initial_location
|
||||
- keep_open_at
|
||||
- last_address
|
||||
- last_nearest_place
|
||||
- last_what3words
|
||||
- level
|
||||
- location
|
||||
- nearest_place
|
||||
|
@ -184,6 +196,9 @@ select_permissions:
|
|||
- id
|
||||
- initial_location
|
||||
- keep_open_at
|
||||
- last_address
|
||||
- last_nearest_place
|
||||
- last_what3words
|
||||
- level
|
||||
- location
|
||||
- nearest_place
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
-- Could not auto-generate a down migration.
|
||||
-- Please write an appropriate down migration for the SQL below:
|
||||
-- alter table "public"."alert" add column "last_address" text
|
||||
-- null;
|
|
@ -0,0 +1,2 @@
|
|||
alter table "public"."alert" add column "last_address" text
|
||||
null;
|
|
@ -0,0 +1,4 @@
|
|||
-- Could not auto-generate a down migration.
|
||||
-- Please write an appropriate down migration for the SQL below:
|
||||
-- alter table "public"."alert" add column "last_what3words" text
|
||||
-- null;
|
|
@ -0,0 +1,2 @@
|
|||
alter table "public"."alert" add column "last_what3words" text
|
||||
null;
|
|
@ -0,0 +1,4 @@
|
|||
-- Could not auto-generate a down migration.
|
||||
-- Please write an appropriate down migration for the SQL below:
|
||||
-- alter table "public"."alert" add column "last_nearest_place" text
|
||||
-- null;
|
|
@ -0,0 +1,2 @@
|
|||
alter table "public"."alert" add column "last_nearest_place" text
|
||||
null;
|
Loading…
Add table
Reference in a new issue