Files
Global-Jain/database/migrations/2022_03_07_101718_create_professions_table.php

35 lines
791 B
PHP
Raw Permalink Normal View History

2025-11-05 10:37:10 +05:30
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProfessionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('professions', function (Blueprint $table) {
$table->id();
$table->string('name')->unique()->length(100);
$table->bigInteger('created_by')->nullable()->length(20);
$table->bigInteger('updated_by')->nullable()->length(20);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('professions');
}
}