DB Schema:Settings
From Matt's Network Monitor
Contents |
[edit] Description
The "settings" table contains any number of key-value paired application settings.
[edit] Fields
| Name | Data Type | Description |
|---|---|---|
| skey | varchar(30) | The name of the setting. |
| svalue | varchar(100) | The value of the setting. |
[edit] Model Validation
validates_presence_of :skey, :svalue validates_uniqueness_of :skey
[edit] Additional Information
See the Settings page for a complete list of settings used in throughout the application.
