Skip to content
Snippets Groups Projects
Verified Commit ad0cb076 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Minor fixes

parent 727c0c95
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,6 @@ func main() { ...@@ -126,7 +126,6 @@ func main() {
Nick: config.Irc.Nick, Nick: config.Irc.Nick,
User: config.Irc.Ident, User: config.Irc.Ident,
Name: config.Irc.Realname, Name: config.Irc.Realname,
Debug: os.Stdout,
} }
if config.Irc.SaslEnabled { if config.Irc.SaslEnabled {
ircConfig.SASL = &girc.SASLPlain{ ircConfig.SASL = &girc.SASLPlain{
......
create table channels (
id serial not null
constraint channels_pkey primary key,
channel text not null,
salt text not null
);
create unique index channels_channel_uindex
on channels (channel);
create table messages ( create table messages (
id serial not null id serial not null
constraint messages_pkey primary key, constraint messages_pkey primary key,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment