Skip to content

Commit

Permalink
Insert some blank lines. Should unconfuse the installer
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jan 12, 2014
1 parent 8448589 commit 9670edb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sql/schema.mysql
@@ -1,7 +1,11 @@
DROP PROCEDURE IF EXISTS `ilbot_log_line`;

DROP TABLE IF EXISTS `ilbot_lines`;

DROP TABLE IF EXISTS `ilbot_day`;

DROP TABLE IF EXISTS `ilbot_channel`;

CREATE TABLE `ilbot_channel` (
`id` int(11) NOT NULL auto_increment,
`channel` VARCHAR(30) NOT NULL,
Expand Down
4 changes: 4 additions & 0 deletions sql/schema.postgresql
@@ -1,7 +1,11 @@
DROP FUNCTION IF EXISTS ilbot_log_line(VARCHAR(30), VARCHAR(40), VARCHAR(512));

DROP TABLE IF EXISTS "ilbot_lines";

DROP TABLE IF EXISTS "ilbot_day";

DROP TABLE IF EXISTS "ilbot_channel";

CREATE TABLE "ilbot_channel" (
"id" SERIAL PRIMARY KEY,
"channel" VARCHAR(30) NOT NULL UNIQUE
Expand Down

0 comments on commit 9670edb

Please sign in to comment.