From 18d099460d3d7c20b1c24fe354d19ed804412c87 Mon Sep 17 00:00:00 2001 From: dipatrik10 Date: Wed, 18 Mar 2026 20:16:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8=D0=B5=20?= =?UTF-8?q?=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V2__departmentCreate.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/resources/db/migration/V2__departmentCreate.sql b/backend/src/main/resources/db/migration/V2__departmentCreate.sql index c46c3cb..753cebc 100644 --- a/backend/src/main/resources/db/migration/V2__departmentCreate.sql +++ b/backend/src/main/resources/db/migration/V2__departmentCreate.sql @@ -97,7 +97,7 @@ CREATE TABLE IF NOT EXISTS schedule_data ( subjects_id BIGINT NOT NULL REFERENCES subjects(id), lesson_type_id BIGINT NOT NULL REFERENCES lesson_types(id), number_of_hours INT NOT NULL, - is_division BOOLEAN DEFAULT NOT NULL DEFAULT FALSE, + is_division BOOLEAN NOT NULL DEFAULT FALSE, teacher_id BIGINT NOT NULL REFERENCES users(id), semester_type VARCHAR(255) NOT NULL, period VARCHAR(255) NOT NULL