id(); $table->string('title',100)->nullable(); $table->string('description')->nullable(); $table->string('image',50)->nullable(); $table->boolean('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } }