# # The DBCONF table is used to store bootstrap table information # Each row in this table describes a table field. # # tablen Table name of the field # # fieldn SQL field name # # fieldt Field type # # number SQL table field position # create table dbfieldconfig ( _rowid int not null autoincrement, tablen char(20), fieldn char(20), fieldt int, number int, primary key (_rowid) );