Skip to content

Commit

Permalink
Update create_addressable_table.php.stub
Browse files Browse the repository at this point in the history
  • Loading branch information
masterix21 authored Sep 23, 2024
1 parent 614060a commit 44df9e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_addressable_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ return new class extends Migration
$table->string('city')->nullable();
$table->string('state')->nullable();
$table->string('country', 4)->nullable();
$table->geography('coordinates', 'point')->nullable();
$table->geography('coordinates', 'point', config('addressable.srid'))->nullable();

$table->timestamps();
});
Expand Down

0 comments on commit 44df9e8

Please sign in to comment.