Skip to content

Commit

Permalink
add sql
Browse files Browse the repository at this point in the history
  • Loading branch information
aruis committed Feb 4, 2019
1 parent 12593bf commit 83a46a5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/resources/table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
create table edu_score
(
id varchar default uuid_generate_v4() not null
constraint edu_score_pk
primary key,
v_lesson varchar,
n_score numeric,
v_name varchar
);

alter table edu_score owner to postgres;

0 comments on commit 83a46a5

Please sign in to comment.