Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
165e2bd3
Commit
165e2bd3
authored
Mar 15, 2006
by
David Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sorry! This is an old table add for the wireless stats applet; I forgot
to commit it.
parent
3b7a67ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
sql/database-create.sql
sql/database-create.sql
+15
-0
sql/database-migrate.txt
sql/database-migrate.txt
+14
-0
No files found.
sql/database-create.sql
View file @
165e2bd3
...
...
@@ -2716,6 +2716,21 @@ CREATE TABLE widearea_updates (
PRIMARY
KEY
(
IP
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table `wireless_stats`
--
CREATE
TABLE
wireless_stats
(
name
varchar
(
32
)
NOT
NULL
default
''
,
floor
varchar
(
32
)
NOT
NULL
default
''
,
building
varchar
(
32
)
NOT
NULL
default
''
,
data_eid
varchar
(
32
)
default
NULL
,
data_pid
varchar
(
32
)
default
NULL
,
type
varchar
(
32
)
default
NULL
,
altsrc
tinytext
,
PRIMARY
KEY
(
name
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table `wires`
--
...
...
sql/database-migrate.txt
View file @
165e2bd3
...
...
@@ -3159,3 +3159,17 @@ last_net_act,last_cpu_act,last_ext_act);
4.37: Add field to virt_firewalls to allow specification of rule logging.
alter table virt_firewalls add log tinytext NOT NULL default '' after style;
4.38: Add new table, wireless_stats, to store some basic config info
for the new wireless stats applet.
CREATE TABLE wireless_stats (
name varchar(32) NOT NULL default '',
floor varchar(32) NOT NULL default '',
building varchar(32) NOT NULL default '',
data_eid varchar(32) default NULL,
data_pid varchar(32) default NULL,
type varchar(32) default NULL,
altsrc tinytext,
PRIMARY KEY (name)
) TYPE=MyISAM;
Write
Preview
Markdown
is supported
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