CORE-POS/IS4C

View on GitHub
pos/is4c-nf/install/sql/op/couponcodes.php.ref

Summary

Maintainability
Test Coverage
<?php
/*
Table: couponcodes

Columns:
    Code varchar
    Qty int
    Value currency

Depends on:
    none

Use:
Standard UPC coupon codes. Code is the UPC suffix,
Qty is required quantity, value is the coupon's value.
*/
$CREATE['op.couponcodes'] = "
    CREATE TABLE couponcodes (
        Code varchar(4),
        Qty int,
        Value real,
        PRIMARY KeY (Code)
    )
";

?>