42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateFaqsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('faqs', function (Blueprint $table) {
|
|
$table->bigIncrements('id');
|
|
$table->biginteger('news_catalog_id')->default(0);
|
|
$table->boolean('is_front_show')->default(true);
|
|
$table->dateTime('post_at')->useCurrent();
|
|
$table->text('seo_title')->nullable();
|
|
$table->text('seo_keyword')->nullable();
|
|
$table->text('seo_description')->nullable();
|
|
$table->text('title');
|
|
$table->text('description');
|
|
$table->text('body');
|
|
$table->text('source_links')->nullable();
|
|
$table->text('photos')->nullalbe();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('faqs');
|
|
}
|
|
}
|