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/maintainers.sql

35 lines
918 B
MySQL
Raw Normal View History

2004-11-09 22:55:47 +00:00
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.
*/
create table appMaintainers (
maintainerId int not null auto_increment,
appId int,
versionId int,
userId int,
superMaintainer bool,
submitTime datetime,
key(maintainerId)
);
/*
* Queue where users names will go if they request to become an application
* maintainer. This includes the reason they want to become a maintainer.
*/
2004-11-09 22:55:47 +00:00
create table appMaintainerQueue (
queueId int not null auto_increment,
appId int,
versionId int,
userId int,
maintainReason text,
superMaintainer bool,
submitTime datetime,
2004-11-09 22:55:47 +00:00
key(queueId)
);