1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/plugin/YPTWallet/install/update.sql
2020-01-14 11:27:40 -03:00

7 lines
No EOL
309 B
SQL

ALTER TABLE `wallet`
ADD COLUMN `crypto_wallet_address` VARCHAR(255) NULL DEFAULT NULL;
ALTER TABLE `wallet_log`
ADD COLUMN `status` ENUM('pending', 'success', 'canceled') NOT NULL DEFAULT 'success',
ADD COLUMN `type` VARCHAR(45) NULL DEFAULT NULL AFTER `status`,
ADD INDEX `wallet_log_type` (`type` ASC) ;