This commit is contained in:
merdan 2023-03-03 17:08:36 +05:00
parent c1191e0815
commit c77b53dfca
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class CreateWishlistFolderTable extends Migration
*/
public function up()
{
Schema::table('wishlist_folder', function (Blueprint $table) {
Schema::create('wishlist_folder', function (Blueprint $table) {
$table->increments('id');
$table->integer('customer_id')->unsigned();
$table->foreign('customer_id')->references('id')->on('customers');