Skip to content

Commit

Permalink
fix(mysql-setup): specify charset and collation when creating table (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
darnaut authored Feb 12, 2024
1 parent ba20c07 commit 2df0d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/mysql-setup/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ create table if not exists metadata_aspect_v2 (
createdfor varchar(255),
constraint pk_metadata_aspect_v2 primary key (urn,aspect,version),
INDEX timeIndex (createdon)
);
) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;

-- create default records for datahub user if not exists
DROP TABLE if exists temp_metadata_aspect_v2;
Expand Down

0 comments on commit 2df0d1a

Please sign in to comment.