mirror of
https://github.com/openvk/openvk
synced 2025-03-04 08:39:50 +03:00
6 lines
268 B
SQL
6 lines
268 B
SQL
CREATE TABLE `cryptotransactions` (
|
|
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
|
`hash` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
`lt` bigint(20) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|