crossfire/crossfire/migrations/20201113-add-tasks-table.sql

12 lines
240 B
SQL

#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;
-- }