Skip to content

Commit

Permalink
changing varbinary to varchar in schemas used for local examples
Browse files Browse the repository at this point in the history
Signed-off-by: arthmis <[email protected]>
  • Loading branch information
arthmis committed Dec 2, 2024
1 parent 68b25b3 commit b2ff66b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/local/create_commerce_schema.sql
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
create table if not exists product(
sku varbinary(128),
description varbinary(128),
sku varchar(128),
description varchar(128),
price bigint,
primary key(sku)
) ENGINE=InnoDB;
create table if not exists customer(
customer_id bigint not null auto_increment,
email varbinary(128),
email varchar(128),
primary key(customer_id)
) ENGINE=InnoDB;
create table if not exists corder(
order_id bigint not null auto_increment,
customer_id bigint,
sku varbinary(128),
sku varchar(128),
price bigint,
primary key(order_id)
) ENGINE=InnoDB;

0 comments on commit b2ff66b

Please sign in to comment.