diff --git a/app/Http/Controllers/StatusController.php b/app/Http/Controllers/StatusController.php new file mode 100644 index 000000000..15a2b9a1d --- /dev/null +++ b/app/Http/Controllers/StatusController.php @@ -0,0 +1,10 @@ +increments('id'); + $table->unsignedInteger('profile_id')->nullable(); + $table->string('caption')->nullable(); + $table->boolean('is_nsfw')->default(false); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('statuses'); + } +}