]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-payout.php
Wrapper function introduced, double-quotes converted to single:
[mailer.git] / inc / extensions / ext-payout.php
index adbb2a90a1350ebb7debefac1187f78eb8895ad7..d101a4d9366a512df76ad99e1d985fa58b4191d5 100644 (file)
@@ -53,7 +53,7 @@ switch (getExtensionMode()) {
                addCreateTableSql('user_payouts', "(
 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
-`payout_total` FLOAT(22,3) UNSIGNED NOT NULL DEFAULT '0.000',
+`payout_total` FLOAT(22,3) UNSIGNED NOT NULL DEFAULT 0.000,
 `target_account` VARCHAR(255) NOT NULL DEFAULT '',
 `target_bank` VARCHAR(255) NOT NULL DEFAULT '',
 `payout_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
@@ -67,7 +67,7 @@ PRIMARY KEY (`id`)
                addCreateTableSql('payout_types', "(
 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
 `type` VARCHAR(255) NOT NULL DEFAULT '',
-`rate` FLOAT(22,3) UNSIGNED NOT NULL DEFAULT '0.000',
+`rate` FLOAT(22,3) UNSIGNED NOT NULL DEFAULT 0.000,
 `min_points` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
 PRIMARY KEY (`id`)
 ) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Payout types'");