We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb4f08 commit 258901fCopy full SHA for 258901f
database/migrations/2020_01_01_000001_create_addresses_table.php
@@ -22,9 +22,9 @@ public function up()
22
$table->string('company')->nullable();
23
$table->foreignId('country_id')->on('countries')->nullable();
24
$table->foreignId('state_id')->on('states')->nullable();
25
- $table->string('state')->nullable();
+ $table->string('state_name')->nullable();
26
$table->foreignId('city_id')->on('cities')->nullable();
27
- $table->string('city')->nullable();
+ $table->string('city_name')->nullable();
28
$table->string('line1')->nullable();
29
$table->string('line2')->nullable();
30
$table->string('street')->nullable();
0 commit comments