Interface: SettingsRow
Defined in: shared/types/database.ts:148
Represents a row in the settings
table.
Remarksโ
Used for storing application-wide key-value settings.
Extendsโ
Propertiesโ
id?โ
optional
id:string
|number
Defined in: shared/types/database.ts:25
Unique identifier for the row.
Remarksโ
May be a number (autoincrement) or string (custom).
Inherited fromโ
key?โ
optional
key:string
Defined in: shared/types/database.ts:152
The unique key for the setting.
value?โ
optional
value:string
Defined in: shared/types/database.ts:156
The value associated with the key.