[wellwell-devel] [wellwell/zoom] Add table structure for coupon_targets.

Stefan Hornburg wellwell-devel at rt.icdevgroup.org
Wed Sep 15 10:46:50 UTC 2010


commit 218bd08ddb2fa1fae654b7e675a6f5579f78ff2a
Author: Stefan Hornburg (Racke) <racke at linuxia.de>
Date:   Fri Sep 3 11:08:54 2010 +0200

    Add table structure for coupon_targets.

 plugins/coupons/database/mysql/coupon_targets.sql |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)
---
diff --git a/plugins/coupons/database/mysql/coupon_targets.sql b/plugins/coupons/database/mysql/coupon_targets.sql
new file mode 100644
index 0000000..6ec04e7
--- /dev/null
+++ b/plugins/coupons/database/mysql/coupon_targets.sql
@@ -0,0 +1,7 @@
+CREATE TABLE coupon_targets (
+	code int NOT NULL auto_increment,
+    discount_code int NOT NULL,
+	value varchar(255) NOT NULL default '',
+	PRIMARY KEY(code),
+	KEY(discount_code)
+);
\ No newline at end of file



More information about the wellwell-devel mailing list