20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
Schema::create('migration_table_name_table', function (Blueprint $table) {
|
|
$table->id();
|
|
|
|
// add fields
|
|
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
};
|