id('preparationclass_id'); $table->string('title', 255)->nullable(); $table->string('alias', 255)->nullable(); $table->integer('parent_preparationclass'); $table->text('details')->nullable(); $table->text('intro')->nullable(); $table->string('image', 255)->nullable(); $table->string('thumb', 255)->nullable(); $table->string('cover', 255)->nullable(); $table->text('remarks')->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('preparationclasses'); } };