gosora/schema/pgsql/query_plugins.sql

6 lines
156 B
SQL

CREATE TABLE `plugins` (
`uname` varchar (180) not null,
`active` boolean DEFAULT 0 not null,
`installed` boolean DEFAULT 0 not null,
unique(`uname`)
);