File: blog.sql

package info (click to toggle)
libmojo-pg-perl 4.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 344 kB
  • sloc: perl: 545; sql: 19; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 140 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
-- 1 up
create table if not exists posts (
  id    serial primary key,
  title text,
  body  text
);

-- 1 down
drop table if exists posts;