8 lines
121 B
SQL
8 lines
121 B
SQL
-- migrate:up
|
|
CREATE TABLE PathNode (
|
|
id integer primary key,
|
|
title text,
|
|
description text
|
|
)
|
|
|
|
-- migrate:down |