12345678910111213141516171819202122232425262728293031323334353637383940 |
- package store
- import (
- "context"
- )
- type Activity struct {
- ID int32
- // Standard fields
- CreatorID int32
- CreatedTs int64
- // Domain specific fields
- Type string
- Level string
- Payload string
- }
- func (s *Store) CreateActivity(ctx context.Context, create *Activity) (*Activity, error) {
- stmt := `
- INSERT INTO activity (
- creator_id,
- type,
- level,
- payload
- )
- VALUES (?, ?, ?, ?)
- RETURNING id, created_ts
- `
- if err := s.db.QueryRowContext(ctx, stmt, create.CreatorID, create.Type, create.Level, create.Payload).Scan(
- &create.ID,
- &create.CreatedTs,
- ); err != nil {
- return nil, err
- }
- activity := create
- return activity, nil
- }
|