mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 18:23:15 +02:00
10 lines
217 B
MySQL
10 lines
217 B
MySQL
|
|
CREATE TABLE users (
|
||
|
|
id SERIAL PRIMARY KEY,
|
||
|
|
username VARCHAR(255) NOT NULL,
|
||
|
|
oauth_ID VARCHAR(255) NOT NULL
|
||
|
|
);
|
||
|
|
|
||
|
|
INSERT INTO users (username, oauth_ID) VALUES
|
||
|
|
('Mkyong', 40),
|
||
|
|
('Ali', 28),
|
||
|
|
('Teoh', 18);
|