1
edit
Changes
→Initializing the SQL environment
create table test.Account(
id binary(16) not null, contactId binary(16) not null, constraint Account_PK primary key(id)
)ENGINE=InnoDB CHARACTER SET=utf8; // PostgreSQL version with no ENGINE and CHARACTER
</source>