From b3901e28f7845d484664fc7ab847fcc6c34ec7cd Mon Sep 17 00:00:00 2001 From: hysn99 Date: Tue, 26 Mar 2024 13:40:15 +0300 Subject: [PATCH] fix uppercase problem --- app/lib/run/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/run/db.go b/app/lib/run/db.go index 0ade92c..f10d1b9 100644 --- a/app/lib/run/db.go +++ b/app/lib/run/db.go @@ -37,7 +37,7 @@ func InitDB(path string) error { } companySchema := ` -create table Company ( +create table company ( name text not null unique, member_number text not null, username text not null,