Store unspecified scheme names in database as empty string, not null.
[cumulus.git] / schema.sql
index 2851f0f..9d2137e 100644 (file)
@@ -7,7 +7,7 @@
 create table snapshots (
     snapshotid integer primary key,
     name text not null,
-    scheme text,
+    scheme text not null,
     timestamp real,
     intent real
 );