This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/tables/user_privs.sql
2004-03-15 16:22:00 +00:00

7 lines
103 B
SQL

CREATE TABLE user_privs (
userid int not null,
priv varchar(64) not null,
primary key(userid)
);