Таблицы ACIS: names, users, records

Таблицы заполняются в процессе обработки user-data файлов.

acis.names

Поля: id, names

id
char(200) not null primary key — содержит идентификатор персональной записи
names
text not null — содержит список имён, соответствующих человеку, как строку с символом перевода каретки в качестве разделителя.

acis.users

Ed.Note: Вообще-то эта таблица нам сейчас не нужна.

Поля: login, password, user_data_file.

login
char(100) not null primary key
password
char( 20 ) not null
user_data_file
char( 200 ) not null

acis.records

Поля: shortid, id, login, user_data_file.

shortid
char(10) not null primary key
id
char(200) not null
login
char(100) not null
user_data_file
char(200) not null

+ index ( login )