lemonldap-ng/modules/lemonldap-ng-portal/example/AuthLA/ressources/db/taccounts.sql

12 lines
260 B
SQL

create table taccounts
(
id_account int NOT NULL AUTO_INCREMENT,
uid blob NOT NULL,
identity_dump blob NULL,
timestamp TIMESTAMP,
divers blob NULL,
unique index (id_account),
primary key (id_account)
);