#lang north
-- @revision: e50ab485d8590ead53c2518396c04f81
-- @description: Creates the tasks table.
-- @up {
create table tasks (id integer primary key, name text not null, manifest blob not null);
-- }
-- @down {
drop table tasks;