Unverified Commit b8f48ade authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Do not use DB HAFAS by default. Use DB IRIS instead.

parent ef50cbf3
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -2689,6 +2689,18 @@ qq{select distinct checkout_station_id from in_transit where backend_id = 0;}
			}
		);
	},

	# v58 -> v59
	# DB HAFAS is dead. Default to DB IRIS for now.
	sub {
		my ($db) = @_;
		$db->query(
			qq{
				alter table users alter column backend_id set default 0;
				update schema_version set version = 59;
			}
		);
	},
);

sub sync_stations {