id('shortcode_id'); $table->string('title', 255)->nullable(); $table->string('alias', 255)->nullable(); $table->string('text', 255)->nullable(); $table->text('description')->nullable(); $table->integer('display_order')->nullable(); $table->integer('status')->nullable(); $table->timestamps(); $table->integer('createdby')->nullable(); $table->integer('updatedby')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('shortcodes'); } };