Skip to content
Snippets Groups Projects
Commit d992c835 authored by Mike Hibler's avatar Mike Hibler
Browse files

add missing comma in CREATE TABLE

parent 06b6ed86
No related branches found
No related tags found
No related merge requests found
# #
# EMULAB-COPYRIGHT # EMULAB-COPYRIGHT
# Copyright (c) 2003-2006 University of Utah and the Flux Group. # Copyright (c) 2003-2007 University of Utah and the Flux Group.
# All rights reserved. # All rights reserved.
# #
# Anytime you change database-create.sql, but sure to put any special # Anytime you change database-create.sql, but sure to put any special
...@@ -3873,7 +3873,7 @@ last_net_act,last_cpu_act,last_ext_act); ...@@ -3873,7 +3873,7 @@ last_net_act,last_cpu_act,last_ext_act);
timeout varchar(10) NOT NULL default '', timeout varchar(10) NOT NULL default '',
adminon tinyint(1) NOT NULL default '0', adminon tinyint(1) NOT NULL default '0',
PRIMARY KEY (uid_idx,hashkey), PRIMARY KEY (uid_idx,hashkey),
UNIQUE KEY hashhash (uid_idx,hashhash) UNIQUE KEY hashhash (uid_idx,hashhash),
UNIQUE KEY uidkey (uid,hashkey) UNIQUE KEY uidkey (uid,hashkey)
) TYPE=MyISAM; ) TYPE=MyISAM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment