openvk/install/sqls/00024-toncoin-fetching.sql
Alexander Minkin cc6771ea70
Coin: add sql 'migration' file
Still, there is no separate table to check which migrations were applied
2022-05-07 11:55:38 +03:00

6 lines
272 B
SQL

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;