We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac1bac commit d0cf7e7Copy full SHA for d0cf7e7
db/migrations/0025_tax_ids.sql
@@ -3,7 +3,7 @@ create table if not exists
3
"id" text primary key,
4
"object" text,
5
"country" text,
6
- "customer" text not null,
+ "customer" text,
7
"type" text,
8
"value" text,
9
"created" integer not null,
src/schemas/tax_id.ts
@@ -14,5 +14,5 @@ export const taxIdSchema: JsonSchema = {
14
livemode: { type: 'boolean' },
15
owner: { type: 'object' },
16
},
17
- required: ['id', 'customer'],
+ required: ['id'],
18
} as const
0 commit comments