From 64fd3c3c546bed6253d8db9f3b2d2c803bbddeb3 Mon Sep 17 00:00:00 2001
From: "Dominik.Sigmund" <dominik.sigmund@br.de>
Date: Mon, 8 Jul 2024 17:22:57 +0200
Subject: [PATCH] Added even more todos

---
 commands/add.go | 1 +
 main.go         | 1 +
 2 files changed, 2 insertions(+)

diff --git a/commands/add.go b/commands/add.go
index 2df7f56..360a272 100644
--- a/commands/add.go
+++ b/commands/add.go
@@ -20,6 +20,7 @@ func addTable(name string) {
 		- Check if the table already exists in the datasmith.yaml file
 		- Add a new table and columns to the datasmith.yaml file
 		- Create a new table file in the sql directory (by database type)
+		- Generate Test Data for the new table if wanted
 		- Add Table to import-sql.sh
 		- Add Description to the DBML file
 		- Add Description and mermaid to the README.md file
diff --git a/main.go b/main.go
index 9968a73..2adfc2f 100644
--- a/main.go
+++ b/main.go
@@ -44,6 +44,7 @@ func main() {
 		commands.Version(version)
 	case "help":
 		commands.Help()
+	// TODO: list tables, show table, remove table, generate test data
 	default:
 		fmt.Printf("Unknown command: %s\n", command)
 		commands.Help()
-- 
GitLab