9 lines
146 B
SQL
9 lines
146 B
SQL
-- migrate:up
|
|
CREATE TABLE PathNode (
|
|
id integer primary key,
|
|
title text,
|
|
description text
|
|
);
|
|
|
|
-- migrate:down
|
|
-- DROP TABLE PathNode; |