This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
user-mgmt/database/initial.sql

7 lines
178 B
MySQL
Raw Normal View History

2023-07-14 07:38:01 +00:00
CREATE DATABASE if not exists usermgmt;
USE usermgmt;
CREATE TABLE users (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
username VARCHAR(20) NOT NULL,
PRIMARY KEY (id)
);