extend length

This commit is contained in:
jasinco 2025-06-10 21:22:17 +08:00
parent f19f26b9f6
commit 73603ca317

View file

@ -2,7 +2,7 @@ CREATE TYPE post_phase AS ENUM('pending', 'rejected', 'admin_rejected','ok', 'de
CREATE TABLE posts ( CREATE TABLE posts (
id serial PRIMARY KEY, id serial PRIMARY KEY,
content varchar(200) not null, content varchar(500) not null,
signing varchar(20), signing varchar(20),
hash char(64) UNIQUE NOT NULL, hash char(64) UNIQUE NOT NULL,
post_at timestamp with time zone DEFAULT now(), post_at timestamp with time zone DEFAULT now(),