encratite / RiotControl

An elaborate statistics tracking system for League of Legends. It used to be a centralised PostgreSQL based system but now it's a stand-alone SQLite application. It was written in C# and makes use of the LibOfLegends RTMP library. It is licensed under the terms of the GPLv3. Unfortunately I stopped working on it in 2013-08. Check out the website for a longer explanation.
http://riot.cont.ro.lt/
GNU General Public License v3.0
33 stars 15 forks source link

Wrong database constraints #55

Closed encratite closed 12 years ago

encratite commented 12 years ago

This is not a severe bug but I discovered that I had misspelled a database constraint in the old SQL file:

create table player
(
        game_id integer null,

Should have been:

create table player
(
        game_id integer not null,

Not sure if I even want to write a patch for this. The new databases don't have this problem, though.

encratite commented 12 years ago

Implemented an automatic upgrade in https://github.com/epicvrvs/RiotControl/commit/5e48edf3a4d1b99ea482e7468fa9c39a77844673