id(); $table->string('name'); $table->string('municipality'); $table->string('address'); $table->string('colony'); $table->string('cp')->nullable(); $table->decimal('longitude', 10, 8)->nullable(); $table->decimal('latitude', 10, 8)->nullable(); $table->boolean('status')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('modules'); } };