id(); $table->enum('class', ['econom', 'bussiness']); $table->boolean('baggage'); $table->decimal('price', 10, 2); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tariffs'); } }