DEBSOURCES
Skip Quicknav
sources / libmojo-pg-perl / 4.28-1 / examples / blog / migrations / blog.sql
123456789
-- 1 up create table if not exists posts ( id serial primary key, title text, body text ); -- 1 down drop table if exists posts;