summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2005-07-25 03:08:01 +0000
committererdgeist <>2005-07-25 03:08:01 +0000
commitf6ab8ecf9b23518283bba5c3755a4df25d9f45d6 (patch)
tree610735abcd7bbb2425bd5df4465f939bf2c6c2db
parent2685f40922e098aa6375f945626046f764588958 (diff)
Support for bot.pl version 1.7
-rw-r--r--tables.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/tables.sql b/tables.sql
index 533735a..27bdc4f 100644
--- a/tables.sql
+++ b/tables.sql
@@ -5,6 +5,7 @@ drop table replies;
5drop table actions_0r; 5drop table actions_0r;
6drop table strings; 6drop table strings;
7drop table nicknames; 7drop table nicknames;
8drop table aliases;
8 9
9create table users ( 10create 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
57create table aliases (
58 nick text,
59 alias text
60);