5 lines
145 B
SQL
5 lines
145 B
SQL
CREATE TABLE public.seed_states (
|
|
key text PRIMARY KEY,
|
|
content_hash text NOT NULL,
|
|
updated_at timestamptz DEFAULT now() NOT NULL
|
|
);
|