map view defaults to a home lat and lon
This commit is contained in:
parent
f4e4fefaa1
commit
8bd09c0828
6 changed files with 52 additions and 3 deletions
|
@ -41,4 +41,7 @@ alter table diary_entries add updated_at datetime;
|
|||
|
||||
alter table users add column (home_lat double default NULL);
|
||||
alter table users add column (home_lon double default NULL);
|
||||
alter table users add column within_lon double default null;
|
||||
alter table users add column within_lat double default null;
|
||||
|
||||
create table messages (id bigint not null auto_increment, user_id bigint(20) not null, title varchar(255), body text, sent_on datetime, message_read boolean default 0, primary key(id));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue