increments('id'); $table->string('name', 255)->nullable(); $table->string('Class', 255)->nullable(); $table->integer('roll_no')->nullable(); $table->integer('Marks')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('demos'); } }