Interface: BaseRow
Defined in: shared/types/database.ts:27
Base interface for all database row types.
Remarksโ
Provides a common optional id property for tables that use numeric or
string IDs.
Hierarchyโ
Extended byโ
Propertiesโ
id?โ
optional id?: string | number;
Defined in: shared/types/database.ts:34
Unique identifier for the row.
Remarksโ
May be a number (autoincrement) or string (custom).