https://github.com/febrihidayan/simple-crud-golang
https://github.com/febrihidayan/simple-crud-golang
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/febrihidayan/simple-crud-golang
- Owner: febrihidayan
- Created: 2021-12-28T03:28:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-28T03:30:44.000Z (over 3 years ago)
- Last Synced: 2025-01-01T23:09:40.521Z (4 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD MySQL Golang API
```sql
CREATE TABLE `employee` (
`id` int(10) unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`city` varchar(30) NOT NULL
)
```