fixes on merchandise
This commit is contained in:
24
database/migrations/2022_04_30_220318_create_seo_table.php
Normal file
24
database/migrations/2022_04_30_220318_create_seo_table.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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();
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user