bigIncrements('id'); $table->string('hashkey', 300)->unique(); $table->string('name', 255); $table->string('phone', 50)->nullable(); $table->string('email', 255)->nullable(); $table->unsignedBigInteger('store_id')->nullable(); $table->unsignedBigInteger('user_id')->nullable(); $table->unsignedBigInteger('created_by')->nullable(); $table->unsignedBigInteger('updated_by')->nullable(); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('cst'); } };