34 lines
772 B
PHP
34 lines
772 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Query\Expression;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('commandes', function (Blueprint $table) {
|
|
$table->engine = 'InnoDB';
|
|
|
|
$table->bigIncrements('id')->unsigned();
|
|
$table->date('date')->nullable();
|
|
$table->json('adresse')->default(new Expression('(JSON_OBJECT())'));
|
|
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfexists('commandes');
|
|
}
|
|
};
|