setup/postgres/psql_create_tables.sql

Sun, 10 May 2020 10:11:37 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 10 May 2020 10:11:37 +0200
changeset 36
0f4f8f255c32
parent 31
58f78f0142e8
child 37
fecda0f466e6
permissions
-rw-r--r--

removes features that are not (and probably will not) used anyway

     1 -- This script creates the module management tables
     2 --
     4 create table lpitcore_user (
     5     userid          serial          primary key,
     6     username        varchar(50)     not null unique,
     7     lastname        varchar(50),
     8     givenname       varchar(50)
     9 );

mercurial