pgroll/examples/12_create_employees_table.json

24 lines
488 B
JSON
Raw Permalink Normal View History

{
"name": "12_create_employees_table",
"operations": [
{
"create_table": {
"name": "employees",
2024-01-10 18:58:57 +03:00
"comment": "This is a comment for the employees table",
"columns": [
{
"name": "id",
"type": "serial",
"pk": true
},
{
"name": "role",
2024-01-10 18:58:57 +03:00
"type": "varchar(255)",
"comment": "This is a comment for the role column"
}
]
}
}
]
}