Skip to content

Commit

Permalink
change state & city field names
Browse files Browse the repository at this point in the history
  • Loading branch information
aeq-dev committed Sep 11, 2023
1 parent 7bb4f08 commit 258901f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public function up()
$table->string('company')->nullable();
$table->foreignId('country_id')->on('countries')->nullable();
$table->foreignId('state_id')->on('states')->nullable();
$table->string('state')->nullable();
$table->string('state_name')->nullable();
$table->foreignId('city_id')->on('cities')->nullable();
$table->string('city')->nullable();
$table->string('city_name')->nullable();
$table->string('line1')->nullable();
$table->string('line2')->nullable();
$table->string('street')->nullable();
Expand Down

0 comments on commit 258901f

Please sign in to comment.