mirror of
https://github.com/ChronosX88/yans.git
synced 2024-11-13 00:31:00 +00:00
11 lines
254 B
MySQL
11 lines
254 B
MySQL
|
-- +goose Up
|
||
|
|
||
|
CREATE TABLE IF NOT EXISTS attachments_articles_mapping (
|
||
|
article_id INTEGER REFERENCES articles(id),
|
||
|
content_type TEXT NOT NULL,
|
||
|
attachment_id TEXT NOT NULL
|
||
|
);
|
||
|
|
||
|
-- +goose Down
|
||
|
|
||
|
DROP TABLE IF EXISTS attachments_articles_mapping;
|