Files
opensem/database/migrations/2022_04_30_220318_create_seo_table.php
Ludovic CANDELLIER 439a339027 fixes on merchandise
2022-05-02 08:34:40 +02:00

25 lines
589 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up()
{
Schema::create('seo', function (Blueprint $table) {
$table->id();
$table->morphs('model');
$table->longText('description')->nullable();
$table->string('title')->nullable();
$table->string('image')->nullable();
$table->string('author')->nullable();
$table->timestamps();
});
}
};