5 lines
72 B
MySQL
5 lines
72 B
MySQL
|
CREATE TABLE hashes (
|
||
|
book_id BIGINT PRIMARY KEY,
|
||
|
hash BYTEA
|
||
|
);
|