increments('id'); $table->string('nom')->nullable(); $table->string('prenom')->nullable(); $table->string('sous_domaine')->nullable(); $table->string('email')->unique(); $table->string('host')->nullable(); $table->string('telephone')->nullable(); $table->string('db_name')->nullable(); $table->string('user_name')->nullable(); $table->string('password')->nullable(); $table->date('date_debut')->nullable(); $table->date('date_fin')->nullable(); $table->boolean('database_created')->default(false); $table->boolean('project_created')->default(false); $table->boolean('api_created')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('customers'); } }