Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

create table type (
    id int not null auto_increment,
    description varchar(763) not null,
    primary key(id)
) Engine=InnoDB;

...

create table user (
    id int not null auto_increment,
    account_expired boolean not null,
    account_locked boolean not null,
    enabled boolean not null,
    password varchar(63255) not null,
    password_expired boolean not null,
    username varchar(63255) not null,
    unique(username),
    primary key(id)
) Engine=InnoDB;

...