diff --git a/app/StatusArchived.php b/app/StatusArchived.php new file mode 100644 index 000000000..862dddc69 --- /dev/null +++ b/app/StatusArchived.php @@ -0,0 +1,11 @@ +id(); + $table->bigInteger('status_id')->unsigned()->index(); + $table->bigInteger('profile_id')->unsigned()->index(); + $table->string('original_scope')->nullable(); + $table->json('metadata')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('status_archiveds'); + } +}