-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathplan.json
More file actions
38 lines (38 loc) · 1.12 KB
/
plan.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"version": "1.0.0",
"pgschema_version": "1.8.0",
"created_at": "1970-01-01T00:00:00Z",
"source_fingerprint": {
"hash": "1351e4ca7db945af39a49da2b23273d5b33a8b1b9bd3b6a45f3cb4cf2cfce1a2"
},
"groups": [
{
"steps": [
{
"sql": "COMMENT ON COLUMN products.id IS 'Unique product identifier';",
"type": "table.column.comment",
"operation": "alter",
"path": "public.products.id"
},
{
"sql": "COMMENT ON COLUMN products.name IS 'Product display name';",
"type": "table.column.comment",
"operation": "alter",
"path": "public.products.name"
},
{
"sql": "COMMENT ON COLUMN products.price IS 'Product price in USD';",
"type": "table.column.comment",
"operation": "alter",
"path": "public.products.price"
},
{
"sql": "COMMENT ON COLUMN products.created_at IS 'Timestamp when product was added';",
"type": "table.column.comment",
"operation": "alter",
"path": "public.products.created_at"
}
]
}
]
}