my-idlers/database/migrations/2021_02_09_071732_create_crud_table.php
cp6 a314ac99ef Initial v2 commit
Initial v2 commit

Laravel project
2022-02-18 15:48:32 +11:00

37 lines
871 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCrudTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('crud', function (Blueprint $table) {
$defaultjob = 'unemployed';
$table->id();
$table->string('name')->nullable($value=false);
$table->string('city')->nullable($value=false);
$table->string('phone')->nullable($value=true);
$table->string('job')->nullable($value=true)->default($defaultjob);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('crud');
}
}