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

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

mercurial