Skip to content

Commit

Permalink
* added count columns
Browse files Browse the repository at this point in the history
  • Loading branch information
yure committed May 18, 2012
1 parent a9df4ed commit 5df024e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/coupons/database/mysql/coupons.sql
@@ -1,7 +1,8 @@
CREATE TABLE coupons (
code int NOT NULL auto_increment,
coupon_number varchar(32) not null default '',
amount decimal(11,2) NOT NULL DEFAULT 0,
amount decimal(11,2) NOT NULL DEFAULT 0,
inactive boolean NOT NULL DEFAULT FALSE,
coupons int NOT NULL DEFAULT 1000000,
PRIMARY KEY(code)
);

0 comments on commit 5df024e

Please sign in to comment.