gosora/schema/mysql/query_plugins.sql

6 lines
166 B
SQL

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