| 123456789101112131415161718192021222324252627282930313233 |
- <?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('countries', function (Blueprint $table) {
- $table->id();
- $table->string('name', 100)->unique()->comment('国家/地区名称');
- $table->string('code', 25)->nullable()->comment('国家/地区代码');
- $table->string('flag', 255)->nullable()->comment('国旗图标URL');
- $table->integer('status')->nullable()->default(1)->comment('状态: 1-正常, 0-禁用');
- $table->timestamps();
- $table->comment('国家/地区表');
- });
- }
- /**
- * Reverse the migrations.
- */
- public function down(): void
- {
- Schema::dropIfExists('countries');
- }
- };
|