芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/database/migrations/2023_07_31_131631_create_seos_table.php
id(); $table->unsignedBigInteger('language_id'); $table->foreign('language_id')->references('id')->on('languages')->onDelete('cascade'); $table->text('meta_title')->nullable(); $table->text('meta_description')->nullable(); $table->text('meta_keyword')->nullable(); $table->string('fb_app_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('seos'); } };