]> git.pld-linux.org Git - projects/buildlogs.git/blame - init.sql
- separation continued
[projects/buildlogs.git] / init.sql
CommitLineData
638df245 1-- MySQL dump 9.11
2--
3-- Host: localhost Database: buildlogs
4-- ------------------------------------------------------
5-- Server version 4.0.22
6
7--
8-- Table structure for table `architectures`
9--
10CREATE DATABASE buildlogs;
11
12USE buildlogs;
13
14
15CREATE TABLE architectures (
16 arch_id tinyint(4) NOT NULL default '0',
17 name varchar(15) default NULL,
18 PRIMARY KEY (arch_id)
19) TYPE=MyISAM;
20
21--
22-- Dumping data for table `architectures`
23--
24
25INSERT INTO architectures VALUES (0,'th/SRPMS');
26INSERT INTO architectures VALUES (1,'th/i486');
27INSERT INTO architectures VALUES (2,'th/i686');
28INSERT INTO architectures VALUES (3,'th/athlon');
29INSERT INTO architectures VALUES (4,'th/x86_64');
30INSERT INTO architectures VALUES (5,'th/ia64');
31INSERT INTO architectures VALUES (6,'th/alpha');
32INSERT INTO architectures VALUES (7,'th/ppc');
33INSERT INTO architectures VALUES (8,'th/sparc');
34INSERT INTO architectures VALUES (9,'ac/SRPMS');
35INSERT INTO architectures VALUES (10,'ac/i386');
36INSERT INTO architectures VALUES (11,'ac/i586');
37INSERT INTO architectures VALUES (12,'ac/i686');
38INSERT INTO architectures VALUES (13,'ac/athlon');
39INSERT INTO architectures VALUES (14,'ac/amd64');
40INSERT INTO architectures VALUES (15,'ac/alpha');
41INSERT INTO architectures VALUES (16,'ac/ppc');
42INSERT INTO architectures VALUES (17,'ac/sparc');
43INSERT INTO architectures VALUES (18,'ac/sparc64');
44
45
46-- Table structure for table `logs`
47--
48
49CREATE TABLE logs (
50 log_id int(11) NOT NULL auto_increment,
51 arch_id tinyint(4) default NULL,
52 result tinyint(4) default NULL,
53 size int(11) default NULL,
54 spec_id smallint(6) default NULL,
55 mtime int(11) default NULL,
56 PRIMARY KEY (log_id)
57) TYPE=MyISAM;
58
59
60CREATE TABLE result (
61 result_id tinyint(4) NOT NULL default '0',
62 name varchar(5) default NULL,
63 PRIMARY KEY (result_id)
64) TYPE=MyISAM;
65
66--
67-- Dumping data for table `result`
68--
69
70INSERT INTO result VALUES (0,'FAIL');
71INSERT INTO result VALUES (1,'OK');
72
73--
74-- Table structure for table `specs`
75--
76
77CREATE TABLE specs (
78 spec_id smallint(6) NOT NULL auto_increment,
79 spec varchar(70) default NULL,
80 PRIMARY KEY (spec_id)
81) TYPE=MyISAM;
82
This page took 0.10677 seconds and 4 git commands to generate.