pastebin/migrations/2019-11-23-192058_store-program-input-output/up.sql
2019-11-23 21:17:26 +01:00

6 lines
156 B
SQL

ALTER TABLE pastes
ADD COLUMN stdin text NOT NULL DEFAULT '',
ADD COLUMN exit_code integer,
ADD COLUMN stdout text,
ADD COLUMN stderr text;