Interface: SettingsRow
Defined in: shared/types/database.ts:164
Represents a row in the settings table.
Remarksโ
Used for storing application-wide key-value settings.
Hierarchyโ
Extendsโ
Propertiesโ
id?โ
optionalid?:string|number
Defined in: shared/types/database.ts:30
Unique identifier for the row.
Remarksโ
May be a number (autoincrement) or string (custom).
Inherited fromโ
key?โ
optionalkey?:string
Defined in: shared/types/database.ts:168
The unique key for the setting.
value?โ
optionalvalue?:string
Defined in: shared/types/database.ts:172
The value associated with the key.