D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
database
/
migrations
/
Filename :
2022_04_22_084931_create_course_resources_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('course_resources', function (Blueprint $table) { $table->id(); $table->uuid('uuid')->unique(); $table->unsignedBigInteger('course_id')->nullable(); $table->string('original_filename')->nullable(); $table->string('file')->nullable(); $table->string('size')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('course_resources'); } };