|
@@ -34,6 +34,7 @@ create table ttirc_users (id serial not null primary key,
|
|
|
email varchar(250) not null,
|
|
|
nick varchar(120) not null,
|
|
|
heartbeat timestamp default null,
|
|
|
+ last_message timestamp default null,
|
|
|
quit_message varchar(120) not null default '',
|
|
|
hide_join_part boolean not null default false,
|
|
|
realname varchar(120) not null,
|
|
@@ -160,6 +161,6 @@ create table ttirc_emoticons_popcon (id serial not null primary key,
|
|
|
|
|
|
create table ttirc_version (schema_version int not null);
|
|
|
|
|
|
-insert into ttirc_version values (14);
|
|
|
+insert into ttirc_version values (15);
|
|
|
|
|
|
commit;
|