php artisan make:migration create_links_table Schema::create('links', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('user_id'); $table->string('title')->nullable(); $table->string('slug')->unique(); $table->text('destination'); $table->bigInteger('clicks')->default(0); $table->boolean('is_public')->default(true); $table->string('language')->nullable(); $table->timestamps(); });