aboutsummaryrefslogtreecommitdiff
path: root/src/models/boil_table_names.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/boil_table_names.go')
-rw-r--r--src/models/boil_table_names.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/models/boil_table_names.go b/src/models/boil_table_names.go
index 29a98ba..88dcf55 100644
--- a/src/models/boil_table_names.go
+++ b/src/models/boil_table_names.go
@@ -4,13 +4,17 @@
package models
var TableNames = struct {
+ Comments string
PostTags string
Posts string
Tags string
Users string
+ Votes string
}{
+ Comments: "comments",
PostTags: "post_tags",
Posts: "posts",
Tags: "tags",
Users: "users",
+ Votes: "votes",
}