D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
database
/
migrations
/
Filename :
2022_04_18_103636_create_students_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('students', function (Blueprint $table) { $table->id(); $table->uuid('uuid')->unique(); $table->bigInteger('user_id'); $table->bigInteger('country_id')->nullable(); $table->bigInteger('province_id')->nullable(); $table->bigInteger('state_id')->nullable(); $table->bigInteger('city_id')->nullable(); $table->string('first_name'); $table->string('last_name'); $table->string('phone_number')->nullable(); $table->string('postal_code', 100)->nullable(); $table->string('address')->nullable(); $table->mediumText('about_me')->nullable(); $table->string('gender', 50)->nullable(); $table->tinyInteger('status')->default(1)->comment('0=pending, 1=approved, 2=blocked'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('students'); } };