EbitcoinicsApiApplicationTests

1

tests

0

failures

0

ignored

0.126s

duration

100%

successful

Tests

Test Duration Result
contextLoads() 0.126s passed

Standard output

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v3.0.5)

Hibernate: alter table if exists token drop constraint if exists FKiblu4cjwvyntq3ugo31klp1c6
Hibernate: drop table if exists _user cascade
Hibernate: drop table if exists otp cascade
Hibernate: drop table if exists token cascade
Hibernate: drop sequence if exists _user_seq
Hibernate: drop sequence if exists otp_seq
Hibernate: drop sequence if exists token_seq
Hibernate: create sequence _user_seq start with 1 increment by 50
Hibernate: create sequence otp_seq start with 1 increment by 50
Hibernate: create sequence token_seq start with 1 increment by 50
Hibernate: create table _user (id bigint not null, email varchar(255), firstname varchar(255), is_account_active boolean not null, is_email_verified boolean not null, is_phone_number_verified boolean not null, lastname varchar(255), password varchar(255), phone_number varchar(255), role varchar(255), primary key (id))
Hibernate: create table otp (id integer not null, otp_code varchar(255), user_id bigint, primary key (id))
Hibernate: create table token (id integer not null, expired boolean not null, revoked boolean not null, token varchar(255), token_type varchar(255), user_id bigint, primary key (id))
Hibernate: alter table if exists token add constraint UK_pddrhgwxnms2aceeku9s2ewy5 unique (token)
Hibernate: alter table if exists token add constraint FKiblu4cjwvyntq3ugo31klp1c6 foreign key (user_id) references _user