remove a file accidentally left over from the experiment in using sqlite to maintain lease information

This commit is contained in:
Zooko O'Whielacronx 2007-10-14 20:57:59 -07:00
parent ed84534c5b
commit 83d7eb23e6

View File

@ -1,20 +0,0 @@
CREATE TABLE buckets
(
bucket_id integer PRIMARY KEY AUTOINCREMENT,
storage_index char(32)
);
CREATE TABLE owners
(
owner_id integer PRIMARY KEY AUTOINCREMENT
);
CREATE TABLE leases
(
lease_id integer PRIMARY KEY AUTOINCREMENT,
bucket_id integer,
owner_id integer,
renew_secret char(32),
cancel_secret char(32),
expire_time timestamp
);