芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/database/migrations/2023_04_11_120934_create_features_table.php
id(); $table->unsignedBigInteger('language_id'); $table->foreign('language_id')->references('id')->on('languages')->onDelete('cascade'); $table->enum('style', ['style1'])->default('style1'); $table->enum('type', ['icon', 'image']); $table->string('icon')->nullable(); $table->text('section_image')->nullable(); $table->text('subtitle')->nullable(); $table->text('title')->nullable(); $table->text('description')->nullable(); $table->integer('order')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('features'); } };