123movies-seo/database/migrations/2023_12_13_115549_create_news_table.php

36 lines
714 B
PHP
Raw Permalink Normal View History

2024-08-24 23:08:42 +03:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('news', function (Blueprint $table) {
$table->id();
$table->text('title');
$table->longText('body');
$table->string('slug');
$table->longText('meta');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('news');
}
};