mirror of
https://github.com/certd/certd.git
synced 2026-06-15 21:57:33 +08:00
38 lines
1.9 KiB
SQL
38 lines
1.9 KiB
SQL
ALTER TABLE cd_invite_commission_log ADD COLUMN level_id bigint NOT NULL DEFAULT 0;
|
|
ALTER TABLE cd_invite_commission_log ADD COLUMN commission_rate bigint NOT NULL DEFAULT 0;
|
|
|
|
CREATE TABLE `cd_invite_level`
|
|
(
|
|
`id` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,
|
|
`name` varchar(100),
|
|
`icon` varchar(100) NOT NULL DEFAULT 'fluent-emoji-flat:2nd-place-medal',
|
|
`sort` bigint NOT NULL DEFAULT 0,
|
|
`min_amount` bigint NOT NULL DEFAULT 0,
|
|
`commission_rate` bigint NOT NULL DEFAULT 0,
|
|
`level_type` varchar(30) NOT NULL DEFAULT 'normal',
|
|
`disabled` boolean NOT NULL DEFAULT false,
|
|
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
CREATE INDEX `index_invite_level_sort` ON `cd_invite_level` (`sort`);
|
|
|
|
CREATE TABLE `cd_invite_user_plan`
|
|
(
|
|
`id` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,
|
|
`user_id` bigint,
|
|
`enabled` boolean NOT NULL DEFAULT false,
|
|
`level_id` bigint NOT NULL DEFAULT 0,
|
|
`level_locked` boolean NOT NULL DEFAULT false,
|
|
`promotion_amount` bigint NOT NULL DEFAULT 0,
|
|
`agreement_time` bigint NOT NULL DEFAULT 0,
|
|
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
CREATE UNIQUE INDEX `index_invite_user_plan_user_id` ON `cd_invite_user_plan` (`user_id`);
|
|
|
|
INSERT INTO `cd_invite_level` (`name`, `icon`, `sort`, `min_amount`, `commission_rate`, `level_type`, `disabled`)
|
|
VALUES ('青铜', 'fluent-emoji-flat:2nd-place-medal', 10, 0, 10, 'normal', false),
|
|
('白银', 'fluent-emoji-flat:1st-place-medal', 20, 10000, 15, 'normal', false),
|
|
('黄金', 'fluent-emoji-flat:3rd-place-medal', 30, 50000, 20, 'normal', false),
|
|
('钻石', 'streamline-color:diamond-2', 40, 300000, 30, 'normal', false);
|