id('quicklink_id'); $table->string('title', 250)->charset('utf8')->collation('utf8_general_ci')->nullable(false); $table->string('alias', 250)->charset('utf8')->collation('utf8_general_ci')->nullable(false); $table->string('link', 250)->charset('utf8')->collation('utf8_general_ci')->nullable(false); $table->integer('display_order')->default(1); $table->integer('status')->default(1); $table->integer('createdby')->nullable(); $table->integer('updatedby')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('quicklinks'); } };