summaryrefslogtreecommitdiff
path: root/dbschema.sql
diff options
context:
space:
mode:
authorKjetil Ørbekk <orbekk@pvv.ntnu.no>2008-09-02 22:47:30 +0200
committerKjetil Ørbekk <orbekk@pvv.ntnu.no>2008-09-02 22:50:06 +0200
commit5f83ed096a8f0e19cd4658258c07630d17c4b488 (patch)
tree2719fa35c3841e8c4e8788a4f3f8961e0e1cbc93 /dbschema.sql
parent03f4bf1cbe80d7e196b301c44e9ee0cc95529d69 (diff)
- Added active-flag to database (convenient when scanning paths)
- Disable active-flag on old directories
Diffstat (limited to 'dbschema.sql')
-rw-r--r--dbschema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/dbschema.sql b/dbschema.sql
index 6d730d9..9a8c0c9 100644
--- a/dbschema.sql
+++ b/dbschema.sql
@@ -26,5 +26,6 @@ CREATE TABLE genre (
CREATE TABLE path (
path varchar(255),
+ active integer NOT NULL,
PRIMARY KEY(path)
);