This commit is contained in:
Andras Bacsai
2023-05-25 13:23:42 +02:00
parent 89ba10ab4e
commit bbd6b68eae
27 changed files with 26 additions and 45 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::create('environments', function (Blueprint $table) {
$table->id()->primary();
$table->id();
$table->string('name');
$table->foreignId('project_id');
$table->timestamps();