EHM DAL 0.2.3
Data abstraction layer for Eastside Hockey Manager
Loading...
Searching...
No Matches
table_index.h
1#pragma once
2
6namespace ehm_dal::tables {
7
8// Database table indexes
14enum class TableIndex : char {
15 SAVED_GAME_TABLE = -2,
16 NO_TABLE = -1,
17 GAME_BASIC_DATA = 0,
20 NATIONS,
21 CITIES,
22 STATES,
23 ARENAS,
24 COLOURS,
25 CLUBS,
28 STAFF,
37 OFFICIALS,
40 INJURIES,
44 DRAFTS,
50};
51
52} // namespace ehm_dal::tables
53
54
namespace ehm_dal::tables
Definition: column.h:4
TableIndex
The TableIndex enum represents the id number of each table within the database.
Definition: table_index.h:14