1
0

stop hardcoding webserver address 🔥🔥

This commit is contained in:
labalityowo
2023-05-21 19:30:45 +07:00
parent 9be271d703
commit e7b02fc9d1
6 changed files with 67 additions and 3 deletions

View File

@ -723,6 +723,40 @@ CREATE TABLE `youtube` (
`clicktime` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Table structure for table `salesannouncements`
--
CREATE TABLE `salesannouncements` (
`id` int(11) NOT NULL,
`ranks` varchar(250) DEFAULT NULL,
`message` varchar(256) DEFAULT NULL,
`enabled` tinyint(1) DEFAULT NULL,
`clans` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `salesannouncements`
--
ALTER TABLE `salesannouncements`
ADD PRIMARY KEY (`id`),
ADD KEY `typeIndex` (`clans`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `salesannouncements`
--
ALTER TABLE `salesannouncements`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;
--
-- Indexes for dumped tables
--