зеркало из
1
0
Форкнуть 0

Fixes the Quarkus DDL for the database

This commit is contained in:
Antonio Goncalves 2023-04-04 06:47:23 +02:00
Родитель f19fc7394d
Коммит 7485db3f52
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -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)
);