Files
project/database/migrations/2025_10_29_154423_create_users_table.php
Your Project Name 89c10c6a70 мой 1 камит
2025-11-19 17:47:46 +00:00

32 lines
648 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('name');
$table->string('password');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
$table->dropColumn('password');
}
};