“Użytkownik Shema Spring Boot” Kod odpowiedzi

Użytkownik Shema Spring Boot

  create table users(
      username varchar_ignorecase(50) not null primary key,
      password varchar_ignorecase(50) not null,
      enabled boolean not null);

  create table authorities (
      username varchar_ignorecase(50) not null,
      authority varchar_ignorecase(50) not null,
      constraint fk_authorities_users foreign key(username) references users(username));
      create unique index ix_auth_username on authorities (username,authority);
Grieving Goldfinch

Użytkownik Shema Spring Boot

create table persistent_logins (
  username varchar(64) not null,
  series varchar(64) primary key,
  token varchar(64) not null,
  last_used timestamp not null);
Grieving Goldfinch

Odpowiedzi podobne do “Użytkownik Shema Spring Boot”

Pytania podobne do “Użytkownik Shema Spring Boot”

Więcej pokrewnych odpowiedzi na “Użytkownik Shema Spring Boot” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu