Misdew/uploads.sql
2022-07-20 07:50:51 -04:00

92 lines
2.2 KiB
SQL

-- phpMyAdmin SQL Dump
-- version 4.6.6deb5
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jul 20, 2022 at 12:48 PM
-- Server version: 10.0.28-MariaDB-2+b1
-- PHP Version: 7.3.31-1~deb10u1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `uploads`
--
-- --------------------------------------------------------
--
-- Table structure for table `image_uploads`
--
CREATE TABLE `image_uploads` (
`id` int(11) NOT NULL,
`cloud_size` text NOT NULL,
`nickname` char(255) NOT NULL DEFAULT 'Untitled',
`file_location` text NOT NULL,
`file_alias` text NOT NULL,
`file_name` text NOT NULL,
`tstamp` text NOT NULL,
`uid` text NOT NULL,
`uid_doublecheck` text NOT NULL,
`posted_uname` text NOT NULL,
`verif_username` text NOT NULL,
`upl_from` text NOT NULL,
`filetype` char(255) NOT NULL DEFAULT 'Image',
`mdds_path` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `zip_uploads`
--
CREATE TABLE `zip_uploads` (
`id` int(11) NOT NULL,
`file_location` text NOT NULL,
`file_alias` text NOT NULL,
`ip_address` text NOT NULL,
`tstamp` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `image_uploads`
--
ALTER TABLE `image_uploads`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `zip_uploads`
--
ALTER TABLE `zip_uploads`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `image_uploads`
--
ALTER TABLE `image_uploads`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2025;
--
-- AUTO_INCREMENT for table `zip_uploads`
--
ALTER TABLE `zip_uploads`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
/*!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 */;