Files
db_builder/example.json
Namu f922ca16f9
Some checks failed
Build project / SonarQube Trigger (push) Has been cancelled
Build project / quality-and-build (push) Has been cancelled
fix: Correct the AUTOINCREMENT statement and PRIMARY KEY place in declaration
2026-06-16 21:19:11 +02:00

41 lines
668 B
JSON

[
{
"name": "products",
"strict": false,
"columns": [
{
"name": "id",
"datatype": "Integer",
"primary_key": true,
"auto_increment": true
}
]
},
{
"name": "users",
"strict": true,
"columns": [
{
"name": "id",
"datatype": "Integer",
"primary_key": true,
"auto_increment": true
},
{
"name": "name",
"datatype": "Text",
"unique": true
},
{
"name": "password",
"datatype": "Text"
},
{
"name": "email",
"datatype": "Text",
"unique": true
}
]
}
]