芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/database/migrations/2023_05_16_132304_create_plans_table.php
id(); $table->unsignedBigInteger('language_id'); $table->foreign('language_id')->references('id')->on('languages')->onDelete('cascade'); $table->text('name')->nullable(); $table->text('tag')->nullable(); $table->text('currency')->nullable(); $table->text('price')->nullable(); $table->text('extra_text')->nullable(); $table->text('feature_list')->nullable(); $table->text('non_feature_list')->nullable(); $table->text('button_name')->nullable(); $table->text('button_url')->nullable(); $table->enum('recommended', ['yes', 'no'])->default('no'); $table->integer('order')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('plans'); } };