Changeset 81

Show
Ignore:
Timestamp:
03/30/08 21:39:17 (7 months ago)
Author:
wriewra2
Message:

Corrected a spelling mistake in the sucrose.tables.sql. Apparently num_comsumed != non_consumed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sucrose/trunk/mysql/sucrose.tables.sql

    r71 r81  
    99                name VARCHAR(255) NOT NULL, 
    1010                price DECIMAL(4,2) NOT NULL, 
    11                 num_comsumed INT NOT NULL DEFAULT 0, 
     11                num_consumed INT NOT NULL DEFAULT 0, 
    1212                tray_slot_size 
    1313                ENUM('caffeine_can','sucrose_small','sucrose_large','sucrose_gum') NOT 
     
    2929                item_id INT NULL, 
    3030                machine_tray_id INT NOT NULL, 
    31                 quantity INT NOT NULL DEFAULT 0, 
     31                quantity INT UNSIGNED NOT NULL DEFAULT 0, 
    3232                machine ENUM('caffeine','sucrose') NOT NULL, 
    3333                cur_price DECIMAL(4,2) NOT NULL,