id('accridiation_id'); $table->string('display')->nullable(); $table->string('title')->nullable(); $table->text('text')->nullable(); $table->string('image')->nullable(); $table->string('thumb')->nullable(); $table->string('cover')->nullable(); $table->integer('display_order')->nullable(); $table->integer('status')->nullable(); $table->integer('created_by')->nullable(); $table->integer('updated_by')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('accridations'); } };