Catalin-Andronie/dbml.net

Table Setting : `[headercolor: #FF00FF]`

Closed this issue · 0 comments

Table Settings

Settings are all defined within square brackets: [setting1: value1, setting2: value2, setting3, setting4]
Each setting item can take in 2 forms: Key: Value or keyword, similar to that of Python function parameters.

  • headercolor: <color_code>: change the table header color.

Example,

Table TableWithSettings [headercolor: #3498DB] {
    id integer [primary key]
    username varchar(255) [not null, unique]
}