generated from phundrak/rust-poem-openapi-template
16 lines
535 B
MySQL
16 lines
535 B
MySQL
|
-- Add up migration script here
|
||
|
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
||
|
|
||
|
CREATE TABLE IF NOT EXISTS public.users
|
||
|
(
|
||
|
id character varying(255) NOT NULL,
|
||
|
username character varying(255) NOT NULL,
|
||
|
email character varying(255),
|
||
|
avatar character varying(511),
|
||
|
name character varying(255),
|
||
|
created_at timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
last_updated timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
PRIMARY KEY (id),
|
||
|
CONSTRAINT users_email_unique UNIQUE (email)
|
||
|
);
|