Raffales-LMS/database/migrations/2022_07_07_044213_create_countries_table.php
2024-04-16 15:43:24 +05:45

36 lines
846 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCountriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('countries', function (Blueprint $table) {
$table->id();
$table->unsignedInteger('phone_code')->nullable();
$table->string('country_code',255)->nullable();
$table->string('country_name',255)->nullable();
$table->enum('status',['Active','Inactive'])->default('Active');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('countries');
}
}