[phplib-commit] CVS: php-lib-stable/stuff create_database.oracle, 1.1.1.1, 1.2
Brought to you by:
nhruby,
richardarcher
From: Florian C. <ch...@us...> - 2006-07-29 10:55:32
|
Update of /cvsroot/phplib/php-lib-stable/stuff In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4881 Modified Files: create_database.oracle Log Message: Even if active_sessions table should not be used anymore with php4 sessions, I finally corrected the VAL datatype that has been false for years in this script! ;-) Index: create_database.oracle =================================================================== RCS file: /cvsroot/phplib/php-lib-stable/stuff/create_database.oracle,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** create_database.oracle 17 Apr 2000 16:40:17 -0000 1.1.1.1 --- create_database.oracle 29 Jul 2006 10:55:30 -0000 1.2 *************** *** 15,19 **** SID VARCHAR2(32) not null, NAME VARCHAR2(32) not null, ! VAL LONG null , CHANGED VARCHAR2(14) not null, constraint PK_ACTIVE_SESSIONS primary key (SID, NAME) --- 15,19 ---- SID VARCHAR2(32) not null, NAME VARCHAR2(32) not null, ! VAL VARCHAR2(2000) null , CHANGED VARCHAR2(14) not null, constraint PK_ACTIVE_SESSIONS primary key (SID, NAME) *************** *** 35,39 **** CT_NAME VARCHAR2(32) not null, CT_POS VARCHAR2(6) not null, ! CT_VAL LONG null , CT_CHANGED VARCHAR2(14) not null, constraint PK_ACTIVE_SESSIONS_SPLIT primary key (CT_SID, CT_NAME, CT_POS) --- 35,39 ---- CT_NAME VARCHAR2(32) not null, CT_POS VARCHAR2(6) not null, ! CT_VAL VARCHAR2(2000) null , CT_CHANGED VARCHAR2(14) not null, constraint PK_ACTIVE_SESSIONS_SPLIT primary key (CT_SID, CT_NAME, CT_POS) |