All pastes #2079167 Raw Edit

Someone

public text v1 · immutable
#2079167 ·published 2011-08-30 22:03 UTC
rendered paste body
(buildbot-0.8)[] bhearsum@voot:~/Mozilla/checkouts/github/pocoo-buildbot$ ls -l state.sqlite
-rw-r--r-- 1 bhearsum bhearsum 60416 2011-08-30 18:01 state.sqlite
(buildbot-0.8)[] bhearsum@voot:~/Mozilla/checkouts/github/pocoo-buildbot$ sqlite3 state.sqlite '.schema buildrequests'
CREATE TABLE buildrequests (
	id INTEGER NOT NULL, 
	buildsetid INTEGER NOT NULL, 
	buildername VARCHAR(256) NOT NULL, 
	priority INTEGER DEFAULT '0' NOT NULL, 
	complete INTEGER DEFAULT '0', 
	results SMALLINT, 
	submitted_at INTEGER NOT NULL, 
	complete_at INTEGER, 
	PRIMARY KEY (id)
);