aboutsummaryrefslogtreecommitdiff
path: root/server/database/database.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/database/database.go')
-rw-r--r--server/database/database.go15
1 files changed, 12 insertions, 3 deletions
diff --git a/server/database/database.go b/server/database/database.go
index 68c3c76..a7a4f34 100644
--- a/server/database/database.go
+++ b/server/database/database.go
@@ -44,9 +44,18 @@ func InitDB() {
Name TEXT,
Phone TEXT,
Email TEXT,
- BillAddress BLOB,
- ShipAddress BLOB,
- GSTIN TEXT)`,
+
+ BillAddressLine TEXT,
+ BillAddressCity TEXT,
+ BillAddressState TEXT,
+ BillAddressPINCode TEXT,
+ BillAddressCountry TEXT,
+
+ ShipAddressLine TEXT,
+ ShipAddressCity TEXT,
+ ShipAddressState TEXT,
+ ShipAddressPINCode TEXT,
+ ShipAddressCountry TEXT)`,
)
init_people.Exec()