Skip to content

Commit be22aba

Browse files
committed
Add database dump file with default structure
1 parent b516be9 commit be22aba

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

dump.sql

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 5.2.1
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: 127.0.0.1
6+
-- Creato il: Ago 26, 2025 alle 23:21
7+
-- Versione del server: 10.4.32-MariaDB
8+
-- Versione PHP: 8.0.30
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
START TRANSACTION;
12+
SET time_zone = "+00:00";
13+
14+
15+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
16+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
17+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
18+
/*!40101 SET NAMES utf8mb4 */;
19+
20+
--
21+
-- Database: `testdb`
22+
--
23+
24+
-- --------------------------------------------------------
25+
26+
--
27+
-- Struttura della tabella `users`
28+
--
29+
30+
CREATE TABLE `users` (
31+
`N` int(11) NOT NULL,
32+
`username` varchar(20) NOT NULL,
33+
`password` varchar(80) NOT NULL,
34+
`totp_secret_key` varchar(20) NOT NULL
35+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
36+
37+
--
38+
-- Indici per le tabelle scaricate
39+
--
40+
41+
--
42+
-- Indici per le tabelle `users`
43+
--
44+
ALTER TABLE `users`
45+
ADD PRIMARY KEY (`N`);
46+
47+
--
48+
-- AUTO_INCREMENT per le tabelle scaricate
49+
--
50+
51+
--
52+
-- AUTO_INCREMENT per la tabella `users`
53+
--
54+
ALTER TABLE `users`
55+
MODIFY `N` int(11) NOT NULL AUTO_INCREMENT;
56+
COMMIT;
57+
58+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
59+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
60+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)