File: /home/imensosw/www/ezwork/database/migrations/2021_02_05_093359_create_countrys_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCountrysTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('countrys', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('country', 100);
$table->string('nationality', 100);
$table->string('country_code', 100);
$table->string('country_code_mobile', 100)->nullable();
$table->string('currency', 100);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('countrys');
}
}