“SHEMA SHEMA BOOT” Réponses codées

SHEMA SHEMA 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

SHEMA SHEMA 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

Réponses similaires à “SHEMA SHEMA BOOT”

Questions similaires à “SHEMA SHEMA BOOT”

Plus de réponses similaires à “SHEMA SHEMA BOOT” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code