daniel-cottone / Cerberus

A demonstration of a completely stateless and RESTful token-based authorization system using JSON Web Tokens (JWT) and Spring Security.
MIT License
477 stars 176 forks source link

SQL #10

Closed Eitol closed 8 years ago

Eitol commented 8 years ago

CREATE TABLE users ( id integer NOT NULL, username character varying(50) NOT NULL, password character varying(100) NOT NULL, last_password_reset timestamp without time zone NOT NULL, authorities character varying(100) NOT NULL, CONSTRAINT user_pkey PRIMARY KEY (id) );