id(); $table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP')); $table->timestamp('updated_at')->default(DB::raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP')); $table->string('business_name'); $table->string('project_name'); $table->string('business_address'); $table->string('village_code'); $table->string('land_area'); $table->string('investment_amount'); $table->string('number_of_employee'); $table->string('business_type_id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tourism'); } };