Skip to content

Commit

Permalink
db
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurgolo committed Mar 21, 2024
1 parent f5f613b commit 04a3619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/teamdetails.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Global Dexie database initialization
const db = new Dexie("Team Tracking App");
db.version(16).stores({
db.version(17).stores({
teams: "++indexid, globalid, clienttimestamp, teamname, teamnumber, teamschool, alliancescore, active, moreinfo, startingpos, Leaveszone, scores1amp, scores1speaker, picksup, scores2amp, scores2speaker, preferredScoringMethod, preferredIntakeMethod, prefintake, spotlight, trap, alone, hangsWithAnother, attemptsSpotlight, coop",
matches: "++indexid, globalid, clienttimestamp, match, remoteid, active, rank, matchnumber, count1, count2, count3, count4, count5, count6, count7, stage, hangs, harmony, otherinfo"
matches: "++indexid, globalid, clienttimestamp, match, remoteid, active, rank, matchnumber, count1, count2, count3, count4, count5, count6, count7, stage, hangs, harmony, trap, otherinfo"
});

//I CHANGED ID TO INDEXID AS ID WAS CONFLICTING WITH THE AUTO INCREMENTED ID IN THE TABLE ON THE SQL SERVER *********************** Scrub that, I made a ton of changes :-\
Expand Down

0 comments on commit 04a3619

Please sign in to comment.