Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | /** * Database schema exports * * This is the single source of truth for the database schema. * All tables, relations, and types are exported from here. */ export * from './abacus-settings' export * from './ai-usage' export * from './auth-accounts' export * from './app-settings' export * from './arcade-rooms' export * from './background-tasks' export * from './arcade-sessions' export * from './classroom-enrollments' export * from './classroom-presence' export * from './classrooms' export * from './custom-skills' export * from './enrollment-requests' export * from './entry-prompts' export * from './euclid-creations' export * from './euclid-progress' export * from './family-events' export * from './game-results' export * from './households' export * from './mcp-api-keys' export * from './parent-child' export * from './player-curriculum' export * from './player-session-preferences' export * from './player-skill-mastery' export * from './player-stats' export * from './players' export * from './practice-attachments' export * from './practice-notification-subscriptions' export * from './practice-sessions' export * from './progression-deferrals' export * from './session-observation-shares' export * from './session-plans' export * from './skill-tutorial-progress' export * from './room-bans' export * from './room-game-configs' export * from './room-invitations' export * from './room-join-requests' export * from './room-member-history' export * from './room-members' export * from './room-reports' export * from './scanner-settings' export * from './seed-profile-players' export * from './user-stats' export * from './users' export * from './verification-tokens' export * from './worksheet-attempts' export * from './worksheet-mastery' export * from './worksheet-settings' export * from './worksheet-shares' export * from './vision-training-sessions' export * from './vision-training-sync-history' export * from './vision-recordings' export * from './vision-problem-videos' export * from './teacher-flowcharts' export * from './flowchart-embeddings' export * from './smoke-tests' export * from './casbin-rules' export * from './coverage-results' export * from './feature-flags' export * from './feature-flag-overrides' export * from './subscriptions' export * from './topic-taxonomy' export * from './session-songs' export * from './song-shares' export * from './tts-collected-clips' export * from './number-line-moments' export * from './number-line-postcards' export * from './user-notification-settings' |