toEngineFamily method

EngineFamily toEngineFamily()

Implementation

EngineFamily toEngineFamily() {
  switch (this) {
    case 'MYSQL':
      return EngineFamily.mysql;
    case 'POSTGRESQL':
      return EngineFamily.postgresql;
  }
  throw Exception('$this is not known in enum EngineFamily');
}