summaryrefslogtreecommitdiff
path: root/modules/digibug/helpers/digibug_installer.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-06-22 21:51:22 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-06-22 21:51:22 -0700
commit58d5624e401f1c369cbbf913008775bc5a165570 (patch)
treed2b67c7db5314c21636ae9663f451b018221a3bb /modules/digibug/helpers/digibug_installer.php
parenta8a366e3398ef15dcc67f70c25f7a34d99757e12 (diff)
This commit moves a little further along the path:
1) moves the print button from the quick pane to thumb_bottom 2) Creates an entry into the proxy table
Diffstat (limited to 'modules/digibug/helpers/digibug_installer.php')
-rw-r--r--modules/digibug/helpers/digibug_installer.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/digibug/helpers/digibug_installer.php b/modules/digibug/helpers/digibug_installer.php
index 33b5107b..73645eb7 100644
--- a/modules/digibug/helpers/digibug_installer.php
+++ b/modules/digibug/helpers/digibug_installer.php
@@ -22,9 +22,9 @@ class digibug_installer {
$version = module::get_version("digibug");
if ($version == 0) {
Database::instance()
- ->query("CREATE TABLE {print_proxy} (
+ ->query("CREATE TABLE {proxies} (
`id` int(9) NOT NULL auto_increment,
- `proxy_id` char(55) NOT NULL,
+ `uuid` char(32) NOT NULL,
`item_id` int(9),
PRIMARY KEY (`id`))
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
@@ -38,7 +38,7 @@ class digibug_installer {
}
static function uninstall() {
- Database::instance()->query("DROP TABLE IF EXISTS {print_proxy}");
+ Database::instance()->query("DROP TABLE IF EXISTS {proxys}");
module::delete("digibug");
}
}