6 lines
127 B
SQL
6 lines
127 B
SQL
CREATE TABLE node (
|
|
id integer primary key,
|
|
title text,
|
|
description text,
|
|
pathId integer references path(id)
|
|
); |