id('successstory_id'); $table->integer('countries_id')->nullable(); $table->string('title', 255)->nullable(); $table->string('alias', 200)->nullable(); $table->string('image', 255)->nullable(); $table->text('text')->nullable(); $table->string('remarks', 255)->nullable(); $table->integer('display_order')->nullable(); $table->integer('status')->nullable(); $table->string('university', 255)->nullable(); $table->string('faculty', 255)->nullable(); $table->string('createdby', 255)->nullable(); $table->string('updatedby', 255)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('successstories'); } };