More evolution of what the 'locks' table will look like.

This commit is contained in:
Andrew McMillan 2006-12-04 10:12:22 +13:00
parent e996032425
commit 4415a25335
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ CREATE TABLE locks (
type TEXT,
scope TEXT,
depth INT,
owner INT REFERENCES usr(user_no),
owner TEXT,
timeout INTERVAL,
start TIMESTAMP DEFAULT current_timestamp
);

View File

@ -111,7 +111,7 @@ CREATE TABLE locks (
type TEXT,
scope TEXT,
depth INT,
owner INT REFERENCES usr(user_no),
owner TEXT,
timeout INTERVAL,
start TIMESTAMP DEFAULT current_timestamp
);