Louis Hollingworth
cf80d4b70d
Added DB schemas that are needed for the basics. Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
9 lines
224 B
SQL
9 lines
224 B
SQL
-- SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
|
|
--
|
|
-- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
-- Your SQL goes here
|
|
|
|
ALTER TABLE posts
|
|
ADD COLUMN blog_id INTEGER NOT NULL REFERENCES blogs(id);
|