Skip to content

Commit

Permalink
Merge pull request #129 from jampow/master
Browse files Browse the repository at this point in the history
Fixed MySQL setup script to use lower-case table name to match the references in the file. This had caused an error on systems where case sensitivity matters.
  • Loading branch information
tony19 committed Aug 31, 2013
2 parents e300fde + 0e1dad6 commit 7301d37
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -6,7 +6,7 @@

# This SQL script creates the required tables by ch.qos.logback.access.db.DBAppender.
#
# It is intended for MySQL databases. It has been tested on MySQL 5.0.22 with
# It is intended for MySQL databases. It has been tested on MySQL 5.5.31 with
# INNODB tables.


Expand All @@ -16,7 +16,7 @@ DROP TABLE IF EXISTS access_event;
COMMIT;

BEGIN;
CREATE TABLE ACCESS_EVENT
CREATE TABLE access_event
(
timestmp BIGINT NOT NULL,
requestURI VARCHAR(254),
Expand Down

0 comments on commit 7301d37

Please sign in to comment.