pastebin/migrations/2019-11-23-192058_store-program-input-output/up.sql

6 lines
156 B
MySQL
Raw Normal View History

2019-11-23 20:17:26 +00:00
ALTER TABLE pastes
ADD COLUMN stdin text NOT NULL DEFAULT '',
ADD COLUMN exit_code integer,
ADD COLUMN stdout text,
ADD COLUMN stderr text;