Initial import

This commit is contained in:
how2ice
2026-04-21 03:33:23 +09:00
commit 9e4b70f1f1
495 changed files with 94680 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
create table if not exists board_posts (
id serial primary key,
title varchar(200) not null,
content text not null,
automation_plan_item_id integer null,
automation_received_at timestamptz null,
created_at timestamptz not null default now(),
updated_at timestamptz not null default now()
);
create index if not exists idx_board_posts_updated_at
on board_posts (updated_at desc);