diff options
author | erdgeist <> | 2005-07-25 03:08:01 +0000 |
---|---|---|
committer | erdgeist <> | 2005-07-25 03:08:01 +0000 |
commit | f6ab8ecf9b23518283bba5c3755a4df25d9f45d6 (patch) | |
tree | 610735abcd7bbb2425bd5df4465f939bf2c6c2db | |
parent | 2685f40922e098aa6375f945626046f764588958 (diff) |
Support for bot.pl version 1.7
-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 | ); | ||