The current CVS head for Middlekit now generates and expects the
serialNum field for all SQL tables to be called "serialNum" where
before the serialNum field for each table would be called <tablename> +
"Id".

This breaks a lot of existing code as all SQL tables created with prior
versions will not work. 

Here is a excerpt from a new create.sql written by Generate.py from CVS
head:

...
create table User (
    serialNum                 int not null primary key auto_increment,
    deleted                        datetime null,
        firstName                      varchar(15),
        lastName                       varchar(15),
        password                       varchar(63),
...


And an excerpt from a create.sql made with 8.1 Middlekit:

...
create table User (
    userId                  int not null primary key auto_increment,
    deleted                        datetime,
        firstName                      varchar(15),
        lastName                       varchar(15),
        password                       varchar(63),
...

Roger Haase


                
__________________________________
Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.
http://promotions.yahoo.com/new_mail


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to