id(); $table->bigInteger('creator_id'); $table->bigInteger('creator_type')->default(CreatorType::User->value); $table->bigInteger('group_id')->nullable(); $table->string('content', 140); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('statuses'); } };