~ubuntu-branches/ubuntu/vivid/libapache-mod-log-sql/vivid

« back to all changes in this revision

Viewing changes to debian/patches/008-create_tables.sql_adds-doc.patch

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-05-06 10:21:09 UTC
  • Revision ID: package-import@ubuntu.com-20140506102109-6445s92f378tebbj
Tags: 1.100-16
* Patches configure script to search libdbi in a multiarch system
  (Closes: #738377, #542078).
* Calls dh_autotools-dev_updateconfig before the configuration script,
  thanks to Matthias Klose <doko@debian.org> for reporting (Closes: #727392).
* Fixes misnamed in create_tables.sql (Closes: #520388).
* Fixed long description (Closes: #700583).

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
+# Added by Thomas Goirand (Debian maintainer and score_board patch upstream)
12
12
+# take care that the UNIQUE KEY is really VITAL of you don't want your server
13
13
+# to die with a huge MySQL load...
14
 
+create table score_board (
 
14
+create table scoreboard (
15
15
+    id int(14) NOT NULL auto_increment,
16
16
+    vhost varchar(50) NOT NULL default '',
17
17
+    bytes_sent bigint(14) unsigned NOT NULL default '0',