aboutsummaryrefslogtreecommitdiff
path: root/src/models/boil_table_names.go
diff options
context:
space:
mode:
authorAlexander Kavon <me+git@alexkavon.com>2024-01-22 21:30:19 -0500
committerAlexander Kavon <me+git@alexkavon.com>2024-01-22 21:30:19 -0500
commit0cdc7a2e84ac5c460569a26a1dd8e3070cea487e (patch)
treedd1f1f67e9dad99b21fd4d2f817beb846e1fe611 /src/models/boil_table_names.go
parent481b799f9eced5432fdc0c66d2bf04226cdc723b (diff)
add posts table migration, add sqlboiler post model, post routes: create, store, get, post create ui template, remove email from user create route
Diffstat (limited to 'src/models/boil_table_names.go')
-rw-r--r--src/models/boil_table_names.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/models/boil_table_names.go b/src/models/boil_table_names.go
index b98dc13..c88a449 100644
--- a/src/models/boil_table_names.go
+++ b/src/models/boil_table_names.go
@@ -4,7 +4,9 @@
package models
var TableNames = struct {
+ Posts string
Users string
}{
+ Posts: "posts",
Users: "users",
}