Skip to content

Commit

Permalink
first round of cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmanders committed Aug 12, 2024
1 parent cc8ca1a commit 83f7fbe
Show file tree
Hide file tree
Showing 14 changed files with 255 additions and 242 deletions.
4 changes: 2 additions & 2 deletions database/migrations/2020_06_14_000001_create_media_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class CreateMediaTable extends Migration
{
public function up()
public function up(): void
{
Schema::create('media', function (Blueprint $table) {
$table->bigIncrements('id');
Expand All @@ -24,7 +24,7 @@ public function up()
*
* @return void
*/
public function down()
public function down(): void
{
Schema::dropIfExists('media');
}
Expand Down
Loading

0 comments on commit 83f7fbe

Please sign in to comment.