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
- Host: GitHub
- URL: https://github.com/dunghenry/node_mariadb_docker_ts
- Owner: dunghenry
- Created: 2022-10-28T01:49:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T03:42:38.000Z (over 3 years ago)
- Last Synced: 2025-01-25T19:29:02.156Z (over 1 year ago)
- Topics: docker, docker-compose, expressjs, mariadb
- Language: TypeScript
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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));
```