mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
* tests: be more systematic when testing discrete column types Still not covering all due to SQLite limitation * tests: relations of models * tests: model in another namespace gets correctly qualified * tests: cover SoftDeletes trait * tests: cover some variants of getter
16 lines
359 B
PHP
16 lines
359 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('simple', function (Blueprint $table) {
|
|
$table->bigIncrements('id');
|
|
});
|
|
}
|
|
}
|