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