芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/database/migrations/2024_01_01_044650_create_banners_table.php
id(); $table->unsignedBigInteger('language_id'); $table->foreign('language_id')->references('id')->on('languages')->onDelete('cascade'); $table->enum('style', ['style1', 'style2', 'style3', 'style4'])->default('style1'); $table->text('section_image')->nullable(); $table->text('section_image_2')->nullable(); $table->text('section_image_3')->nullable(); $table->text('title')->nullable(); $table->text('description')->nullable(); $table->text('youtube_video_url')->nullable(); $table->text('button_name')->nullable(); $table->text('button_url')->nullable(); $table->text('button_name_2')->nullable(); $table->text('button_url_2')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('banners'); } };