mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-29 15:53:28 -05:00
Better accuracy for database. Does not affect current users.
This commit is contained in:
@@ -60,8 +60,8 @@ class MakeLocationsTable extends Migration
|
||||
$table->integer('locatable_id', false, true);
|
||||
$table->string('locatable_type', 255);
|
||||
|
||||
$table->decimal('latitude', 36, 24)->nullable();
|
||||
$table->decimal('longitude', 36, 24)->nullable();
|
||||
$table->decimal('latitude', 12, 8)->nullable();
|
||||
$table->decimal('longitude', 12, 8)->nullable();
|
||||
$table->smallInteger('zoom_level', false, true)->nullable();
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user