This commit is contained in:
Ryan Chandler
2022-01-04 12:06:56 +00:00
commit 3e708cf4c5
33 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?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('skeleton_table', function (Blueprint $table) {
$table->id();
// add fields
$table->timestamps();
});
}
};