Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
c08bbfb5
Commit
c08bbfb5
authored
Apr 15, 2002
by
Leigh B. Stoller
Browse files
Add userslastlogin table.
parent
d4b622f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
c08bbfb5
...
...
@@ -781,6 +781,17 @@ CREATE TABLE users (
KEY
unix_uid
(
unix_uid
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'userslastlogin'
#
CREATE
TABLE
userslastlogin
(
uid
varchar
(
10
)
NOT
NULL
default
''
,
date
date
default
NULL
,
time
time
default
NULL
,
PRIMARY
KEY
(
uid
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'virt_agents'
#
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment