aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/db/client-meta-migrations/20260203030924_create_meta.sql
blob: 26c3c142edb5b99defcca8d8b684fb40eca71588 (plain) (blame)
1
2
3
4
5
create table if not exists meta (
    key text not null primary key,
    value text not null,
    updated_at integer not null default (strftime('%s', 'now'))
);