MAPG-101 increase geo digits to 7
This commit is contained in:
parent
4b2fc23129
commit
83a027c1bb
17
database/migrations/structure/20200602_2331_geo_digits.sql
Normal file
17
database/migrations/structure/20200602_2331_geo_digits.sql
Normal file
@ -0,0 +1,17 @@
|
||||
ALTER TABLE
|
||||
`maps`
|
||||
MODIFY
|
||||
`bound_south_lat` decimal(9, 7) NOT NULL,
|
||||
MODIFY
|
||||
`bound_west_lng` decimal(10, 7) NOT NULL,
|
||||
MODIFY
|
||||
`bound_north_lat` decimal(9, 7) NOT NULL,
|
||||
MODIFY
|
||||
`bound_east_lng` decimal(10, 7) NOT NULL;
|
||||
|
||||
ALTER TABLE
|
||||
`places`
|
||||
MODIFY
|
||||
`lat` decimal(9, 7) NOT NULL,
|
||||
MODIFY
|
||||
`lng` decimal(10, 7) NOT NULL;
|
Loading…
Reference in New Issue
Block a user