-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.sql
45 lines (35 loc) · 854 Bytes
/
db.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
38
39
40
41
42
43
44
45
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 09, 2022 at 05:59 PM
-- Server version: 10.4.24-MariaDB
-- PHP Version: 8.1.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
--
-- Database: `clipboardadv`
--
-- --------------------------------------------------------
--
-- Table structure for table `clips`
--
CREATE TABLE `clips` (
`id` int(11) NOT NULL,
`publicid` int(4) NOT NULL,
`clip` mediumtext NOT NULL,
`created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Indexes for table `clips`
--
ALTER TABLE `clips`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for table `clips`
--
ALTER TABLE `clips`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
COMMIT;