Files
dolt/samples/state-populations/schema.json

27 lines
360 B
JSON

{
"columns": [
{
"name": "state",
"kind": "string",
"tag": 0,
"is_part_of_pk": true,
"col_constraints":[
{
"constraint_type": "not_null"
}
]
},
{
"name": "population",
"kind": "uint",
"tag": 1,
"is_part_of_pk": false,
"col_constraints":[
{
"constraint_type": "not_null"
}
]
}
]
}