NanoBananaShow/sql/tables/3_stripe_customers.sql
2024-07-08 18:37:12 +08:00

10 lines
211 B
SQL

-- auto-generated definition
create table stripe_customers
(
user_id varchar not null
primary key,
stripe_customer_id text
);
comment on table stripe_customers is 'stripe customers';