all repos

smutok @ d021876

yet another tui rss reader (not abandoned, just paused development)

smutok/internal/store/schema.hcl(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
schema "main" {}

table "reader" {
  schema = schema.main
  column "id" {
    null           = true
    type           = integer
    auto_increment = true
  }
  column "token" {
    null = true
    type = text
  }
  column "last_sync" {
    null = true
    type = date
  }
  primary_key {
    columns = [column.id]
  }
}