Improve a little bit the doc
This commit is contained in:
parent
fbd060d1a0
commit
d5dfcb3435
3 changed files with 14 additions and 4 deletions
|
|
@ -26,14 +26,14 @@ create table ac_users (
|
|||
use_active integer default 0,
|
||||
use_pass text,
|
||||
use_admin integer default 0,
|
||||
use_theme text default 'classic',
|
||||
use_theme text default 'Light',
|
||||
use_usertype text not null,
|
||||
check ( use_active=0 or use_active=1 ),
|
||||
primary key (use_id)
|
||||
);
|
||||
|
||||
insert into ac_users (use_login, use_active,use_pass,use_usertype) values (user,1,
|
||||
'486348d8b9ac03742368d8736244e958','compta');
|
||||
insert into ac_users (use_login, use_active,use_pass,use_usertype,use_admin) values (user,1,
|
||||
'486348d8b9ac03742368d8736244e958','compta',1);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue