SQLite format 3@  NNN.4 

�0�
��
�ytablegamesgamesCREATE TABLE games(
                game_id integer primary key autoincrement,
                h_team_id integer,
                o_team_id integer,
                h_points integer,
                o_points integer,
                date text,
                FOREIGN KEY(h_team_id) REFERENCES teams(id),
                FOREIGN KEY(o_team_id) REFERENCES teams(id)
        )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)|�WtableteamsteamsCREATE TABLE teams(
            id integer primary key autoincrement,
            name text
        )