Coin: add sql 'migration' file

Still, there is no separate table to check which migrations were applied
This commit is contained in:
Alexander Minkin 2022-05-07 11:55:38 +03:00 committed by GitHub
parent 16bc311bbc
commit cc6771ea70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,6 @@
CREATE TABLE `cryptotransactions` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`hash` varchar(45) COLLATE utf8mb4_general_nopad_ci NOT NULL,
`lt` bigint(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_nopad_ci;