id(); $table->timestamps(); $table->text('content')->nullable(); $table->date('date')->nullable(); $table->string('model_related')->nullable(); $table->string('model_id')->nullable(); $table->smallInteger('status')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } };