Fixes the Quarkus DDL for the database
This commit is contained in:
Родитель
f19fc7394d
Коммит
7485db3f52
|
@ -2,10 +2,11 @@ DROP TABLE IF EXISTS Statistics_Quarkus;
|
|||
DROP TABLE IF EXISTS Statistics_Micronaut;
|
||||
DROP TABLE IF EXISTS Statistics_Springboot;
|
||||
DROP SEQUENCE IF EXISTS hibernate_sequence;
|
||||
DROP SEQUENCE IF EXISTS statistics_quarkus_seq;
|
||||
DROP SEQUENCE IF EXISTS statistics_springboot_seq;
|
||||
|
||||
create sequence hibernate_sequence start 1 increment 1;
|
||||
|
||||
create sequence statistics_quarkus_seq start 1 increment 50;
|
||||
create sequence statistics_springboot_seq start 1 increment 50;
|
||||
|
||||
create table Statistics_Quarkus
|
||||
|
@ -13,10 +14,10 @@ create table Statistics_Quarkus
|
|||
id int8 not null,
|
||||
description varchar(255),
|
||||
done_at timestamp,
|
||||
duration int8,
|
||||
framework int4,
|
||||
duration numeric(21,0),
|
||||
framework smallint,
|
||||
parameter varchar(255),
|
||||
type int4,
|
||||
type smallint,
|
||||
primary key (id)
|
||||
);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче