mirror of
https://github.com/v2board/v2board.git
synced 2025-06-15 06:07:49 +08:00
update: payment add custom notify domain name
This commit is contained in:
@ -144,6 +144,7 @@ CREATE TABLE `v2_payment` (
|
||||
`name` varchar(255) NOT NULL,
|
||||
`icon` varchar(255) DEFAULT NULL,
|
||||
`config` text NOT NULL,
|
||||
`notify_domain` varchar(128) DEFAULT NULL,
|
||||
`enable` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`sort` int(11) DEFAULT NULL,
|
||||
`created_at` int(11) NOT NULL,
|
||||
@ -389,4 +390,4 @@ CREATE TABLE `v2_user` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
-- 2022-02-19 16:59:30
|
||||
-- 2022-02-23 07:42:04
|
||||
|
@ -504,3 +504,7 @@ CREATE TABLE `v2_stat_user` (
|
||||
`updated_at` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
|
||||
ALTER TABLE `v2_payment`
|
||||
ADD `notify_domain` varchar(128) COLLATE 'utf8mb4_general_ci' NULL AFTER `config`;
|
||||
|
Reference in New Issue
Block a user