Skip to content

Commit

Permalink
Updated sql table schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 6, 2007
1 parent 98f1b23 commit b07984e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions INSTALL
Expand Up @@ -102,13 +102,13 @@ config variable at the top of a few of them that specifies this).

Type:

mysql> create table finger_archive (
id int not null auto_increment,
username varchar(32) not null,
postdate datetime not null,
text text not null,
primary key (id)
);
mysql> create table finger_archive (
id int not null auto_increment,
username varchar(32) not null,
postdate datetime not null,
text mediumtext character set utf8 COLLATE utf8_general_ci not null,
primary key (id)
);

Next, create the MySQL user for the IcculusFinger database. You can call this
user any name and give this user any password you want, just make sure that
Expand Down

0 comments on commit b07984e

Please sign in to comment.