mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
16 lines
360 B
PHP
16 lines
360 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class SimpleTable extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
Schema::create('simples', function (Blueprint $table) {
|
|
$table->bigIncrements('id');
|
|
});
|
|
}
|
|
}
|