mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Coin: add sql 'migration' file
Still, there is no separate table to check which migrations were applied
This commit is contained in:
parent
16bc311bbc
commit
cc6771ea70
1 changed files with 6 additions and 0 deletions
6
install/sqls/00024-toncoin-fetching.sql
Normal file
6
install/sqls/00024-toncoin-fetching.sql
Normal 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;
|
Loading…
Reference in a new issue