Skip to content

Commit

Permalink
use char(22) now
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Jan 23, 2024
1 parent ba8b1d1 commit 4106723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-store/src/mysql_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl MySqlStore {
r#"
create table if not exists `{schema_name}`.`{table_name}`
(
id char(36) primary key not null, -- TODO: char(22)
id char(22) primary key not null,
data blob not null,
expiry_date timestamp(6) not null
)
Expand Down

0 comments on commit 4106723

Please sign in to comment.