diff options
| author | Alexander Kavon <me+git@alexkavon.com> | 2024-01-25 02:47:26 -0500 |
|---|---|---|
| committer | Alexander Kavon <me+git@alexkavon.com> | 2024-01-25 02:47:26 -0500 |
| commit | 60eb2e7fe5ed3627ad4bd40286df1741529da75b (patch) | |
| tree | f18d8bbbc3590183333778a4e96bebff187366b2 /src/models/boil_table_names.go | |
| parent | 60fd8a68ed87cd7352b490e88ceff3ec21855937 (diff) | |
update hooks to more identifiable names, update migrations to work with votes, use a common enum state typeHEADtrunk
Diffstat (limited to 'src/models/boil_table_names.go')
| -rw-r--r-- | src/models/boil_table_names.go | 4 |
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", } |
