increments('id'); $table->text('body')->nullable(); $table->integer('status_id')->nullable(); $table->string('Story', 5)->nullable(); $table->string('Notification', 12)->nullable(); $table->text('description')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('stabuses'); } }