You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2010/10/26 18:57:41 UTC

svn commit: r1027650 - in /juddi/trunk/docs/db/ddl: db2.ddl derby.ddl mysql.ddl mysql5.ddl mysql5InnoDB.ddl oracle9.ddl postgres.ddl sqlserver.ddl

Author: kstam
Date: Tue Oct 26 16:57:41 2010
New Revision: 1027650

URL: http://svn.apache.org/viewvc?rev=1027650&view=rev
Log:
JUDDI-412 overviewUrl should be nullable

Modified:
    juddi/trunk/docs/db/ddl/db2.ddl
    juddi/trunk/docs/db/ddl/derby.ddl
    juddi/trunk/docs/db/ddl/mysql.ddl
    juddi/trunk/docs/db/ddl/mysql5.ddl
    juddi/trunk/docs/db/ddl/mysql5InnoDB.ddl
    juddi/trunk/docs/db/ddl/oracle9.ddl
    juddi/trunk/docs/db/ddl/postgres.ddl
    juddi/trunk/docs/db/ddl/sqlserver.ddl

Modified: juddi/trunk/docs/db/ddl/db2.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/db2.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/db2.ddl (original)
+++ juddi/trunk/docs/db/ddl/db2.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id bigint generated by default as identity,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255),
         entity_key varchar(255),
         tomodel_instance_info_id bigint,

Modified: juddi/trunk/docs/db/ddl/derby.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/derby.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/derby.ddl (original)
+++ juddi/trunk/docs/db/ddl/derby.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id bigint not null,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255),
         entity_key varchar(255),
         tomodel_instance_info_id bigint,

Modified: juddi/trunk/docs/db/ddl/mysql.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/mysql.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/mysql.ddl (original)
+++ juddi/trunk/docs/db/ddl/mysql.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id bigint not null auto_increment,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255),
         entity_key varchar(255),
         tomodel_instance_info_id bigint,

Modified: juddi/trunk/docs/db/ddl/mysql5.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/mysql5.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/mysql5.ddl (original)
+++ juddi/trunk/docs/db/ddl/mysql5.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id bigint not null auto_increment,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255),
         entity_key varchar(255),
         tomodel_instance_info_id bigint,

Modified: juddi/trunk/docs/db/ddl/mysql5InnoDB.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/mysql5InnoDB.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/mysql5InnoDB.ddl (original)
+++ juddi/trunk/docs/db/ddl/mysql5InnoDB.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id bigint not null auto_increment,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255),
         entity_key varchar(255),
         tomodel_instance_info_id bigint,

Modified: juddi/trunk/docs/db/ddl/oracle9.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/oracle9.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/oracle9.ddl (original)
+++ juddi/trunk/docs/db/ddl/oracle9.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id number(19,0) not null,
-        overview_url varchar2(255 char) not null,
+        overview_url varchar2(255 char) null,
         overview_url_use_type varchar2(255 char),
         entity_key varchar2(255 char),
         tomodel_instance_info_id number(19,0),

Modified: juddi/trunk/docs/db/ddl/postgres.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/postgres.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/postgres.ddl (original)
+++ juddi/trunk/docs/db/ddl/postgres.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id int8 not null,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255),
         entity_key varchar(255),
         tomodel_instance_info_id int8,

Modified: juddi/trunk/docs/db/ddl/sqlserver.ddl
URL: http://svn.apache.org/viewvc/juddi/trunk/docs/db/ddl/sqlserver.ddl?rev=1027650&r1=1027649&r2=1027650&view=diff
==============================================================================
--- juddi/trunk/docs/db/ddl/sqlserver.ddl (original)
+++ juddi/trunk/docs/db/ddl/sqlserver.ddl Tue Oct 26 16:57:41 2010
@@ -197,7 +197,7 @@
 
     create table j3_overview_doc (
         id numeric(19,0) identity not null,
-        overview_url varchar(255) not null,
+        overview_url varchar(255) null,
         overview_url_use_type varchar(255) null,
         entity_key varchar(255) null,
         tomodel_instance_info_id numeric(19,0) null,



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org