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
d2deb406
Commit
d2deb406
authored
Mar 22, 2006
by
Timothy Stack
Browse files
I was bad and edited an existing entry which threw the revision
numbers off. This should realign things...
parent
1db62ed6
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-migrate.txt
View file @
d2deb406
...
...
@@ -3076,7 +3076,7 @@ last_net_act,last_cpu_act,last_ext_act);
alter table archives add date_archived int(10) unsigned \
NOT NULL default '0';
4.2
8
: Some changes to the archive_tags table, for support of forking
4.2
9
: Some changes to the archive_tags table, for support of forking
an archive.
CREATE TABLE archive_tags_new (
...
...
@@ -3098,34 +3098,34 @@ last_net_act,last_cpu_act,last_ext_act);
archive_tags_new TO archive_tags;
drop table archive_tags_old;
4.
29
: Add more fields to archive_tags table.
4.
30
: Add more fields to archive_tags table.
alter table archive_tags add tagtype enum('user','commit',\
'savepoint','internal') NOT NULL default 'internal';
alter table archive_tags add description text;
4.3
0
: Add a contact email to the location_info table.
4.3
1
: Add a contact email to the location_info table.
alter table location_info add email tinytext after contact;
4.3
1
: Add slots to archive_views table to track branching.
4.3
2
: Add slots to archive_views table to track branching.
alter table archive_views add branch_tag varchar(64) default NULL;
alter table archive_views add parent_view varchar(64) default NULL;
4.3
2
: Add Fedora as an OS to the os_info table.
4.3
3
: Add Fedora as an OS to the os_info table.
alter table os_info change column OS OS \
enum('Unknown','Linux','Fedora','FreeBSD','NetBSD',\
'OSKit','Windows','TinyOS','Other') default 'Unknown';
4.3
3
: Add Fedora as an OS to the os_info table.
4.3
4
: Add Fedora as an OS to the os_info table.
alter table os_info change osfeatures osfeatures \
set('ping','ssh','ipod','isup','veths','mlinks', \
'linktest','linkdelays') default NULL;
4.3
4
: Table that maps an OS, version, and role to a boot command line.
4.3
5
: Table that maps an OS, version, and role to a boot command line.
It is referred to when assign_wrapper needs to assign a command
line to a delay or jail node.
...
...
@@ -3139,7 +3139,7 @@ last_net_act,last_cpu_act,last_ext_act);
PRIMARY KEY (OS,version,role)
) TYPE=MyISAM;
4.3
5
: Add plab_site_mapping table for plab nodes, for use with the
4.3
6
: Add plab_site_mapping table for plab nodes, for use with the
datapository.
CREATE TABLE plab_site_mapping (
...
...
@@ -3150,17 +3150,17 @@ last_net_act,last_cpu_act,last_ext_act);
PRIMARY KEY (site_name,site_idx,node_idx)
) TYPE=MyISAM;
4.3
6
: Add batchmode flag to experiment_resources table so we can track
4.3
7
: Add batchmode flag to experiment_resources table so we can track
the usage of the batch daemon on swapin.
alter table experiment_resources add batchmode tinyint(1) \
unsigned default '0' after delay_capacity;
4.3
7
: Add field to virt_firewalls to allow specification of rule logging.
4.3
8
: Add field to virt_firewalls to allow specification of rule logging.
alter table virt_firewalls add log tinytext NOT NULL default '' after style;
4.3
8
: Add new table, wireless_stats, to store some basic config info
4.3
9
: Add new table, wireless_stats, to store some basic config info
for the new wireless stats applet.
CREATE TABLE wireless_stats (
...
...
@@ -3174,7 +3174,7 @@ last_net_act,last_cpu_act,last_ext_act);
PRIMARY KEY (name)
) TYPE=MyISAM;
???
: Add stuff to store the error, as determined by tblog, in a more
4.40
: Add stuff to store the error, as determined by tblog, in a more
structured fashion:
CREATE TABLE errors (
...
...
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