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'); } }