feat(database): Improve database definition to add sizes
This commit is contained in:
parent
ec0aa5654c
commit
a3c1bae6db
6 changed files with 38 additions and 30 deletions
|
|
@ -18,15 +18,17 @@ const dbDefinition: DatabaseDefinition = {
|
|||
},
|
||||
{
|
||||
name: "groupid",
|
||||
type: "VARCHAR(32)",
|
||||
type: "INTEGER",
|
||||
},
|
||||
{
|
||||
name: "key",
|
||||
type: "VARCHAR(32)",
|
||||
type: "VARCHAR",
|
||||
size: 32
|
||||
},
|
||||
{
|
||||
name: "value",
|
||||
type: "VARCHAR(128)",
|
||||
type: "VARCHAR",
|
||||
size: 2 ^ 11
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue