aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/db.struct9
1 files changed, 8 insertions, 1 deletions
diff --git a/data/db.struct b/data/db.struct
index afb5eee..f68e077 100644
--- a/data/db.struct
+++ b/data/db.struct
@@ -47,7 +47,7 @@ INSERT INTO pos VALUES(conv("1000000",16,10), "πρόθεση", "πρόθ.
INSERT INTO pos VALUES(conv("2000000",16,10), "σύνδεσμος", "σύνδ.", "conj", 'Y');
CREATE TABLE dict(
- ident int(32), # REL 1,3
+ ident int(32), # REL 1,3,4
word varchar(128) binary, # REL 4
sound varchar(128) binary,
pos int(4), # REL 0
@@ -56,6 +56,13 @@ CREATE TABLE dict(
INDEX (word)
);
+CREATE TABLE locus(
+ ident int(32), # REL 4
+ file varchar(128) binary,
+ line int(32),
+ INDEX (ident)
+);
+
CREATE TABLE articles(
ident int(32) not null, # REL 1
subindex int(32) not null,

Return to:

Send suggestions and report system problems to the System administrator.