summaryrefslogtreecommitdiff
blob: 4b9c80d402bf96fc7ecc5936f6126e2b422a774e (plain)
1
2
3
4
5
6
7
8
9
10
create table if not exists `groups_portage` (
	`id` int primary key,
	`pkg_name` varchar(255) not null,
	`matches` int not null,
	`pkg_failed` bool not null,
	`test_failed` bool not null,
	`collision` bool not null,
	`bug_assignee` text not null,
	`bug_cc` text not null
);