-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 */; |