increments('id'); $table->string('code', 50); $table->string('name', 50); $table->unsignedDecimal('price', 19)->default(0.00); $table->unsignedDecimal('cost', 19)->default(0.00); $table->unsignedInteger('capacity')->default(0); $table->string('notes')->nullable(); $table->boolean('active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('fares'); } }