Interface: SettingsRow
Defined in: shared/types/database.ts:168
Represents a row in the settings table.
Remarksโ
Used for storing application-wide key-value settings.
Hierarchyโ
Extendsโ
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).
Inherited fromโ
key?โ
optional key?: string;
Defined in: shared/types/database.ts:172
The unique key for the setting.
value?โ
optional value?: string;
Defined in: shared/types/database.ts:176
The value associated with the key.