feat(follow-location): wip
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
|
custom_name: initialLocation
|
||||||
keep_open_at:
|
keep_open_at:
|
||||||
custom_name: keepOpenAt
|
custom_name: keepOpenAt
|
||||||
|
last_address:
|
||||||
|
custom_name: lastAddress
|
||||||
|
last_nearest_place:
|
||||||
|
custom_name: lastNearestPlace
|
||||||
|
last_what3words:
|
||||||
|
custom_name: lastWhat3Words
|
||||||
nearest_place:
|
nearest_place:
|
||||||
custom_name: nearestPlace
|
custom_name: nearestPlace
|
||||||
notified_count:
|
notified_count:
|
||||||
|
@ -81,6 +87,9 @@ configuration:
|
||||||
follow_location_ran: followLocationRan
|
follow_location_ran: followLocationRan
|
||||||
initial_location: initialLocation
|
initial_location: initialLocation
|
||||||
keep_open_at: keepOpenAt
|
keep_open_at: keepOpenAt
|
||||||
|
last_address: lastAddress
|
||||||
|
last_nearest_place: lastNearestPlace
|
||||||
|
last_what3words: lastWhat3Words
|
||||||
nearest_place: nearestPlace
|
nearest_place: nearestPlace
|
||||||
notified_count: notifiedCount
|
notified_count: notifiedCount
|
||||||
notify_around: notifyAround
|
notify_around: notifyAround
|
||||||
|
@ -143,6 +152,9 @@ select_permissions:
|
||||||
- id
|
- id
|
||||||
- initial_location
|
- initial_location
|
||||||
- keep_open_at
|
- keep_open_at
|
||||||
|
- last_address
|
||||||
|
- last_nearest_place
|
||||||
|
- last_what3words
|
||||||
- level
|
- level
|
||||||
- location
|
- location
|
||||||
- nearest_place
|
- nearest_place
|
||||||
|
@ -184,6 +196,9 @@ select_permissions:
|
||||||
- id
|
- id
|
||||||
- initial_location
|
- initial_location
|
||||||
- keep_open_at
|
- keep_open_at
|
||||||
|
- last_address
|
||||||
|
- last_nearest_place
|
||||||
|
- last_what3words
|
||||||
- level
|
- level
|
||||||
- location
|
- location
|
||||||
- nearest_place
|
- 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