Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // database/migrations/2025_08_03_000002_create_levels_table.php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateLevelsTable extends Migration
- {
- public function up()
- {
- Schema::create('levels', function (Blueprint $table) {
- $table->id();
- $table->string('name');
- $table->timestamps();
- });
- }
- public function down()
- {
- Schema::dropIfExists('levels');
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment