Pastes-Bin/BLOG.md

264 B

Migrations

All migrations go into a single file I'll creatively call migrations:

-- 1 up
CREATE TABLE IF NOT EXISTS pastes (
         paste_id SERIAL PRIMARY KEY,
       paste_body TEXT
       );

-- 1 down
DROP TABLE pastes;