Archived
1

Chats saving to database

This commit is contained in:
2017-10-21 14:14:46 +04:00
parent 8dab6c0699
commit c99648b72a
6 changed files with 104 additions and 18 deletions

View File

@@ -10,9 +10,9 @@ import (
// Chat is a struct, which represents `chats` table item in databse.
type Chat struct {
ID int `db:"id"`
Name string `db:"name"`
ChatType bool `db:"chat_type"`
TelegramID int `db:"telegram_id"`
CreatedAt *time.Time `db:"created_at"`
ID int `db:"id"`
Name string `db:"name"`
ChatType string `db:"chat_type"`
TelegramID int `db:"telegram_id"`
CreatedAt time.Time `db:"created_at"`
}