Skip to content

Commit

Permalink
Merge pull request #154 from Carifio24/small-class-12
Browse files Browse the repository at this point in the history
Update small class size
  • Loading branch information
Carifio24 authored Oct 17, 2024
2 parents b3a1d4b + 3393221 commit fcf319d
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 fcf319d

Please sign in to comment.