Skip to content

Commit

Permalink
Update migration stub
Browse files Browse the repository at this point in the history
  • Loading branch information
sevannerse committed Nov 8, 2023
1 parent 7b546eb commit 6884f46
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateLandlordTenantsTable extends Migration
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('tenants', function (Blueprint $table) {
Expand All @@ -16,4 +19,4 @@ class CreateLandlordTenantsTable extends Migration
$table->timestamps();
});
}
}
};

0 comments on commit 6884f46

Please sign in to comment.