PyBitmessage-2021-04-27/src/tests/sql/create_function.sql

12 lines
253 B
MySQL
Raw Normal View History

2021-03-04 14:15:41 +00:00
CREATE TABLE `testhash` (
`addressversion` int DEFAULT NULL,
`hash` blob DEFAULT NULL,
`address` text DEFAULT NULL,
UNIQUE(address) ON CONFLICT IGNORE
);
INSERT INTO testhash (addressversion, hash) VALUES(4, "21122112211221122112");