Skip to content

Commit

Permalink
Create koto_suoritus db table migration
Browse files Browse the repository at this point in the history
  • Loading branch information
tintintti committed Oct 15, 2024
1 parent d0cf633 commit 8fbc5de
Showing 1 changed file with 19 additions and 0 deletions.
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
);

0 comments on commit 8fbc5de

Please sign in to comment.