Skip to content
This repository has been archived by the owner on Jun 18, 2022. It is now read-only.

kmehran1106/Golang-SimpleCRUD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table Creation Query:

create table if not exists products (
    `id` bigint not null auto_increment primary key,
    `created_at` datetime(6) not null,
    `modified_at` datetime(6) not null,
    `name` VARCHAR(255) not null,
    `price` int not null,
    `deleted_at` datetime(6) default null,
    `is_deletd` tinyint(1) not null default 0
)

About

A simple CRUD Web Application using Golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages