Skip to content

Commit

Permalink
Update small class size from 10 to 12.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Oct 17, 2024
1 parent 3a7a9c1 commit 3393221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql/create_class_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CREATE TABLE Classes (
test tinyint(1) NOT NULL DEFAULT 0,
updated datetime DEFAULT NULL,
expected_size int(11) UNSIGNED NOT NULL,
small_class tinyint(1) GENERATED ALWAYS AS (expected_size < 10) VIRTUAL,
small_class tinyint(1) GENERATED ALWAYS AS (expected_size < 12) VIRTUAL,

PRIMARY KEY(id),
INDEX(educator_id),
Expand Down

0 comments on commit 3393221

Please sign in to comment.