15 lines
277 B
SQL
15 lines
277 B
SQL
CREATE TABLE path (
|
|
id text primary key,
|
|
title text,
|
|
description text,
|
|
versions text
|
|
);
|
|
|
|
CREATE TABLE pathMetadata (
|
|
pathId text references path(id),
|
|
versionNumber text,
|
|
createdAt text,
|
|
updatedAt text,
|
|
primary key (pathId, versionNumber)
|
|
);
|