-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create koto_suoritus db table migration
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
server/src/main/resources/db/migration/V3__create_koto_suoritus_table.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
CREATE TABLE koto_suoritus | ||
( | ||
id SERIAL PRIMARY KEY, | ||
first_name TEXT NOT NULL, | ||
last_name TEXT NOT NULL, | ||
oppija_oid TEXT NOT NULL, | ||
email TEXT NOT NULL, | ||
time_completed TIMESTAMP NOT NULL, | ||
luetun_ymmartaminen_result_system FLOAT, | ||
luetun_ymmartaminen_result_teacher FLOAT, | ||
kuullun_ymmartaminen_result_system FLOAT, | ||
kuullun_ymmartaminen_result_teacher FLOAT, | ||
puhe_result_system FLOAT, | ||
puhe_result_teacher FLOAT, | ||
kirjoittaminen_result_system FLOAT, | ||
kirjottaminen_result_teacher FLOAT, | ||
total_evaluation_teacher TEXT, | ||
total_evaluation_system TEXT | ||
); |