Author: pwang
Date: 2011-11-15 12:51:35 -0800 (Tue, 15 Nov 2011)
New Revision: 27472
Modified:
new_cytoscape_website/plugin_website/plugins3/cyplugindb3_schema/CyPluginDB3_schema.sql
Log:
Support 3 digits version for plugins
Modified:
new_cytoscape_website/plugin_website/plugins3/cyplugindb3_schema/CyPluginDB3_schema.sql
===================================================================
---
new_cytoscape_website/plugin_website/plugins3/cyplugindb3_schema/CyPluginDB3_schema.sql
2011-11-15 20:43:24 UTC (rev 27471)
+++
new_cytoscape_website/plugin_website/plugins3/cyplugindb3_schema/CyPluginDB3_schema.sql
2011-11-15 20:51:35 UTC (rev 27472)
@@ -1,5 +1,5 @@
-#DROP DATABASE IF EXISTS cyplugindb3;
-#CREATE DATABASE cyplugindb3;
+DROP DATABASE IF EXISTS cyplugindb3;
+CREATE DATABASE cyplugindb3;
USE cyplugindb3;
@@ -60,8 +60,8 @@
version_auto_id int(11) NOT NULL auto_increment,
plugin_id int(11) default NULL,
plugin_file_id int(11) default NULL,
- cy_version set('3.0','3.1','3.2','3.3') default NULL,
- version double default '0.1',
+ cy_version varchar(99) default NULL,
+ version varchar(99) default '0.0.1',
release_date date default NULL,
release_note text,
release_note_url varchar(100) default NULL,
@@ -77,6 +77,11 @@
PRIMARY KEY (version_auto_id)
);
+CREATE TABLE cy_version (
+ cy_version_auto_id int(11) NOT NULL auto_increment,
+ cy_version char(30);
+};
+
CREATE TABLE usagelog (
log_auto_id int not null auto_increment,
plugin_version_id int(11) NOT NULL,
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.