whoami7 - Manager
:
/
home
/
n170823s
/
public_html
/
database
/
migrations
/
Upload File:
files >> /home/n170823s/public_html/database/migrations/2023_08_07_122717_create_carts_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('carts', function (Blueprint $table) { $table->id(); $table->integer('course_id'); $table->integer('user_id'); $table->integer('quantity'); $table->integer('price'); $table->integer('total_price'); $table->integer('discounted_price'); $table->string('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('carts'); } };
Copyright ©2021 || Defacer Indonesia