-
Notifications
You must be signed in to change notification settings - Fork 6
/
spycams.sql
37 lines (31 loc) · 893 Bytes
/
spycams.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--
-- Table structure for table `spycams`
--
CREATE TABLE `spycams` (
`id` int(11) NOT NULL,
`citizenid` varchar(50) DEFAULT NULL,
`uuid` varchar(36) NOT NULL,
`coords` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`rotation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `spycams`
--
ALTER TABLE `spycams`
ADD PRIMARY KEY (`id`),
ADD KEY `citizenid` (`citizenid`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `spycams`
--
ALTER TABLE `spycams`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;