id('article_id'); $table->integer('parent_article')->default(1); $table->string('title', 255)->nullable(); $table->string('alias', 255)->nullable(); $table->text('text')->nullable(); $table->string('cover_photo', 255)->nullable(); $table->string('thumb', 255)->nullable(); $table->integer('display_order')->default(1); $table->integer('status')->default(1); $table->text('seo_keywords')->nullable(); $table->text('seo_title')->nullable(); $table->text('seo_descriptions')->nullable(); $table->text('og_tags')->nullable(); $table->integer('createdby')->nullable(); $table->integer('updatedby')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('countryarticles'); } };