Skip to content

Commit f694242

Browse files
authored
feat(products): add default_price property (#153)
1 parent 53bd727 commit f694242

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
alter table "stripe"."products"
2+
add column IF NOT EXISTS "default_price" text;

packages/sync-engine/src/schemas/product.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const productSchema: EntitySchema = {
55
'id',
66
'object',
77
'active',
8+
'default_price',
89
'description',
910
'metadata',
1011
'name',

0 commit comments

Comments
 (0)