From c291b6558366dd12da77bf6cfed8c062b07550b7 Mon Sep 17 00:00:00 2001 From: TL Date: Thu, 30 Jun 2022 19:54:49 +0800 Subject: [PATCH] migrations --- database/migrations/2022_06_28_065137_create_address.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2022_06_28_065137_create_address.php b/database/migrations/2022_06_28_065137_create_address.php index d55abcf6..2d0f54a0 100644 --- a/database/migrations/2022_06_28_065137_create_address.php +++ b/database/migrations/2022_06_28_065137_create_address.php @@ -19,8 +19,8 @@ class CreateAddress extends Migration $table->string('name'); $table->string('phone'); $table->unsignedInteger('country_id'); - $table->unsignedInteger('state_id'); - $table->string('state'); + $table->unsignedInteger('zone_id'); + $table->string('zone'); $table->unsignedInteger('city_id'); $table->string('city'); $table->string('zipcode');