Skip to content

Commit afc918f

Browse files
committed
remove "sso_log"
1 parent 9f1645d commit afc918f

File tree

2 files changed

+0
-29
lines changed

2 files changed

+0
-29
lines changed

Diff for: resources/lib/UnitySQL.php

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class UnitySQL
88
{
99
private const TABLE_REQS = "requests";
1010
private const TABLE_NOTICES = "notices";
11-
private const TABLE_SSOLOG = "sso_log";
1211
private const TABLE_PAGES = "pages";
1312
private const TABLE_AUDIT_LOG = "audit_log";
1413
private const TABLE_ACCOUNT_DELETION_REQUESTS = "account_deletion_requests";

Diff for: tools/docker-dev/sql/bootstrap.sql

-28
Original file line numberDiff line numberDiff line change
@@ -189,21 +189,6 @@ CREATE TABLE `sitevars` (
189189
`value` varchar(768) NOT NULL
190190
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
191191

192-
-- --------------------------------------------------------
193-
194-
--
195-
-- Table structure for table `sso_log`
196-
--
197-
198-
CREATE TABLE `sso_log` (
199-
`id` int(10) NOT NULL,
200-
`uid` varchar(300) NOT NULL,
201-
`firstname` varchar(300) NOT NULL,
202-
`lastname` varchar(300) NOT NULL,
203-
`mail` varchar(300) NOT NULL,
204-
`org` varchar(300) NOT NULL
205-
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
206-
207192
--
208193
-- Indexes for dumped tables
209194
--
@@ -274,12 +259,6 @@ ALTER TABLE `requests`
274259
ALTER TABLE `sitevars`
275260
ADD PRIMARY KEY (`id`);
276261

277-
--
278-
-- Indexes for table `sso_log`
279-
--
280-
ALTER TABLE `sso_log`
281-
ADD PRIMARY KEY (`id`);
282-
283262
--
284263
-- AUTO_INCREMENT for dumped tables
285264
--
@@ -350,13 +329,6 @@ ALTER TABLE `requests`
350329
ALTER TABLE `sitevars`
351330
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
352331

353-
--
354-
-- AUTO_INCREMENT for table `sso_log`
355-
--
356-
ALTER TABLE `sso_log`
357-
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
358-
COMMIT;
359-
360332
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
361333
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
362334
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)