Better accuracy for database. Does not affect current users.

This commit is contained in:
James Cole
2023-03-19 10:39:40 +01:00
parent 9530e928d5
commit c30e1c1973
7 changed files with 20 additions and 20 deletions
@@ -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();
}
);