remove old SQL
This commit is contained in:
parent
8d8347ca29
commit
031542dd25
1 changed files with 0 additions and 50 deletions
50
tracker.sql
50
tracker.sql
|
|
@ -1,50 +0,0 @@
|
|||
-- phpMyAdmin SQL Dump
|
||||
-- version 5.1.3
|
||||
-- https://www.phpmyadmin.net/
|
||||
--
|
||||
-- Host: localhost
|
||||
-- Generation Time: Mar 16, 2022 at 03:35 PM
|
||||
-- Server version: 10.7.3-MariaDB
|
||||
-- PHP Version: 7.4.28
|
||||
|
||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||
START TRANSACTION;
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
|
||||
--
|
||||
-- Database: `torrent`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `tracker`
|
||||
--
|
||||
|
||||
CREATE TABLE `tracker` (
|
||||
`info_hash` char(40) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`port` smallint(5) UNSIGNED NOT NULL,
|
||||
`update_time` timestamp NOT NULL DEFAULT current_timestamp()
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Indexes for dumped tables
|
||||
--
|
||||
|
||||
--
|
||||
-- Indexes for table `tracker`
|
||||
--
|
||||
ALTER TABLE `tracker`
|
||||
ADD PRIMARY KEY (`info_hash`,`ip`,`port`);
|
||||
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 */;
|
||||
Loading…
Add table
Reference in a new issue