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

Stefan Hornburg wellwell-devel at rt.icdevgroup.org
Fri Sep 3 09:09:21 UTC 2010


commit 222f4318d1b54388d6d2ae8117dd458c2b8a9aa9
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