Skip to content
Prev Previous commit
Next Next commit
Add missing comma
  • Loading branch information
jjoyce0510 committed Jun 17, 2021
commit f56b08b34ed75d4b6c3ee7b4f7a555d0378c4c1b
2 changes: 1 addition & 1 deletion docker/mysql-setup/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ create table if not exists metadata_aspect_v2 (
createdon datetime(6) not null,
createdby varchar(255) not null,
createdfor varchar(255),
constraint pk_metadata_aspect primary key (urn,aspect,version)
constraint pk_metadata_aspect primary key (urn,aspect,version),
index aspectName (`aspect`)
);

Expand Down