Changeset 5037b4b in network-game


Ignore:
Timestamp:
Nov 7, 2014, 12:17:20 AM (10 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
f3dfead
Parents:
aee0634
Message:

Change the users table to make honor, wins, and losses all unsigned ints

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/dbmod.txt

    raee0634 r5037b4b  
    88   level INT unsigned NOT NULL DEFAULT 0,
    99   experience INT unsigned NOT NULL DEFAULT 0,
    10    honor INT NOT NULL DEFAULT 0,
    11    wins INT NOT NULL DEFAULT 0,
    12    losses INT NOT NULL DEFAULT 0,
     10   honor INT unsigned NOT NULL DEFAULT 0,
     11   wins INT unsigned NOT NULL DEFAULT 0,
     12   losses INT unsigned NOT NULL DEFAULT 0,
    1313   PRIMARY KEY (id),
    1414   UNIQUE KEY name (name)
Note: See TracChangeset for help on using the changeset viewer.