testapi/database/migrations/2025_05_10_135646_create_projects_table.php

22 lines
536 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProjectsTable extends Migration
{
public function up() {
Schema::create('projects', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('project_name');
$table->string('project_number');
$table->timestamps();
});
}
public function down() {
Schema::dropIfExists('projects');
}
}