increments('id'); $table->string('type')->nullable(false); $table->boolean('active')->default(0); // Inactive by default $table->text('properties')->nullable(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('services'); } }