Skip to content

Commit

Permalink
Add table structure for coupon_targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
racke committed Sep 15, 2010
1 parent 19cdc04 commit 218bd08
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions 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)
);

0 comments on commit 218bd08

Please sign in to comment.