12 lines
244 B
SQL
12 lines
244 B
SQL
CREATE TABLE path (
|
|
id integer primary key,
|
|
title text,
|
|
description text,
|
|
versions text
|
|
);
|
|
|
|
CREATE TABLE pathVersions (
|
|
pathId integer references path(id),
|
|
versionNumber string,
|
|
primary key (pathId, versionNumber)
|
|
); |