blob: 3e9ffed2e25fbbede348dd1a7369b13c4424debc (
plain)
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
|
# MySQL dump 8.13
#
# Host: localhost Database: python
#--------------------------------------------------------
# Server version 3.23.36
#
# Table structure for table 'sessions'
#
CREATE TABLE sessions (
username char(32) default NULL,
seconds int(11) default NULL
) TYPE=MyISAM;
#
# Dumping data for table 'sessions'
#
INSERT INTO sessions VALUES ('map',10);
INSERT INTO sessions VALUES ('map',10);
INSERT INTO sessions VALUES ('map',10);
INSERT INTO sessions VALUES ('map',10);
#
# Table structure for table 'users'
#
CREATE TABLE users (
username char(32) NOT NULL default '',
passwd char(32) default NULL,
maxseconds int(11) default NULL,
PRIMARY KEY (username)
) TYPE=MyISAM;
#
# Dumping data for table 'users'
#
INSERT INTO users VALUES ('map','abc',100);
|