25 lines
733 B
SQL
25 lines
733 B
SQL
use apidb;
|
|
|
|
drop table if exists appMaintainerQueue;
|
|
drop table if exists appMaintainers;
|
|
|
|
/*
|
|
* List of the application maintainers. These users have the rights
|
|
* to delete comments, edit the application description and otherwise
|
|
* care for an application.
|
|
*
|
|
* We also store the reason they asked to be a maintainer since we use this table
|
|
* for both queued and unqueued maintainers
|
|
*/
|
|
create table appMaintainers (
|
|
maintainerId int not null auto_increment,
|
|
appId int,
|
|
versionId int,
|
|
userId int,
|
|
maintainReason text,
|
|
superMaintainer bool,
|
|
submitTime datetime,
|
|
queued enum('true','false','rejected') NOT NULL default 'false',
|
|
key(maintainerId)
|
|
);
|