Files
opensem/database/migrations/2022_05_11_202752_create_clients_table.php
Ludovic CANDELLIER 719e4481d7 [WIP] Order process
2022-07-03 22:38:08 +02:00

37 lines
805 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateClientsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('clients', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->ipAddress('ip');
$table->string('api_key');
$table->boolean('is_blacklisted')->default(false);
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('clients');
}
}