Changeset 347d768 in network-game


Ignore:
Timestamp:
Nov 10, 2014, 1:29:12 AM (10 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
426fb84, ace001a
Parents:
7fa452f
Message:

Add time_finished to the gameHistory table, switch the order of blue_score and red_score columns, and fix a foreign key name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/dbmod.txt

    r7fa452f r347d768  
    2020   user_id INT NOT NULL,
    2121   user_team INT NOT NULL,
     22   blue_score INT NOT NULL,
    2223   red_score INT NOT NULL,
    23    blue_score INT NOT NULL,
     24   time_finished INT unsigned NOT NULL,
    2425   PRIMARY KEY (id),
    2526   CONSTRAINT fk_users FOREIGN KEY
    26    fki_users (user_id)
     27   fk_users (user_id)
    2728   REFERENCES users (id)
    2829   ON DELETE CASCADE
Note: See TracChangeset for help on using the changeset viewer.