芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/database/migrations/2024_01_20_025100_create_pages_table.php
id(); $table->unsignedBigInteger('language_id'); $table->foreign('language_id')->references('id')->on('languages')->onDelete('cascade'); $table->text('title'); $table->text('description')->nullable(); $table->text('section_image')->nullable(); $table->text('page_slug'); $table->integer('order')->default(0); $table->enum('status', ['published', 'draft'])->default('published'); $table->enum('breadcrumb_status', ['yes', 'no'])->default('no'); $table->text('custom_breadcrumb_image')->nullable(); $table->text('meta_description')->nullable(); $table->text('meta_keyword')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pages'); } };