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

-- This script creates the module management tables
--

create table lpitcore_user (
    userid          serial          primary key,
    username        varchar(50)     not null unique,
    lastname        varchar(50),
    givenname       varchar(50)
);

mercurial