learn-request-queue/db/10-users.sql

9 lines
208 B
MySQL
Raw Permalink Normal View History

2020-08-08 04:32:06 +00:00
CREATE TABLE users (
userId int NOT NULL,
displayName varchar NOT NULL,
imageUrl varchar,
isFollower boolean NOT NULL DEFAULT FALSE,
isSubscriber boolean NOT NULL DEFAULT FALSE,
PRIMARY KEY (userId)
);