diff options
-rw-r--r-- | tables.sql | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,7 @@ drop table replies; | |||
5 | drop table actions_0r; | 5 | drop table actions_0r; |
6 | drop table strings; | 6 | drop table strings; |
7 | drop table nicknames; | 7 | drop table nicknames; |
8 | drop table aliases; | ||
8 | 9 | ||
9 | create table users ( | 10 | create table users ( |
10 | id text, | 11 | id text, |
@@ -52,3 +53,8 @@ create table nicknames ( | |||
52 | extension text, | 53 | extension text, |
53 | probability real default 1 | 54 | probability real default 1 |
54 | ); | 55 | ); |
56 | |||
57 | create table aliases ( | ||
58 | nick text, | ||
59 | alias text | ||
60 | ); | ||