An open API service indexing awesome lists of open source software.

https://github.com/dunghenry/node_mariadb_docker_ts


https://github.com/dunghenry/node_mariadb_docker_ts

docker docker-compose expressjs mariadb

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

### CREATE TABLE users
```js
create table users(id int not null AUTO_INCREMENT, username varchar(255) not null, email varchar(50) not null, age int not null, PRIMARY KEY(id));
```