Files
jadb/lib/table_names/radkfile.dart
h7x4 0f7854a4fc
All checks were successful
Build and test / evals (push) Successful in 11m34s
migrations: add version tables for all data sources
2026-03-03 12:59:58 +09:00

7 lines
195 B
Dart

abstract class RADKFILETableNames {
static const String version = 'RADKFILE_Version';
static const String radkfile = 'RADKFILE';
static Set<String> get allTables => {version, radkfile};
}