diff --git a/commands/add.go b/commands/add.go
index 2df7f561d96d56a7ab1fd728855be839940c1c65..360a272e84babcbdf79365cbcccbe9bdd966f26f 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 9968a73bff53c74a24bed7a235810f74585136a3..2adfc2f83cb7bfc853b62c0750588f8ed2a59df1 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()