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

24 lines
518 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;
create table appMaintainerQueue (
queueId int not null auto_increment,
appId int,
versionId int,
userId int,
maintainReason text,
submitTime timestamp,
key(queueId)
);
create table appMaintainers (
maintainerId int not null auto_increment,
appId int,
versionId int,
userId int,
submitTime timestamp,
key(maintainerId)
);