engine = 'InnoDB';
$table->integer('id', true);
$table->string('name', 192);
$table->string('ShortName', 192);
$table->integer('base_unit')->nullable()->index('base_unit');
$table->char('operator', 192)->nullable()->default('*');
$table->float('operator_value', 10, 0)->nullable()->default(1);
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('units');
}
}