diff options
author | cel 🌸 <cel@blos.sm> | 2023-06-20 14:54:05 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-06-20 14:54:05 +0100 |
commit | fefea214d392c306d1b9c54baa9a5762d702e12c (patch) | |
tree | e802dbf8b1ed8b8f324639b0c93bfd3907dd9d0f /migrations | |
parent | 4e24495b159df0dbc4f503843c08ccd452af616a (diff) | |
download | blossom-fefea214d392c306d1b9c54baa9a5762d702e12c.tar.gz blossom-fefea214d392c306d1b9c54baa9a5762d702e12c.tar.bz2 blossom-fefea214d392c306d1b9c54baa9a5762d702e12c.zip |
remove database
Diffstat (limited to 'migrations')
-rw-r--r-- | migrations/20230218162011_blossom.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migrations/20230218162011_blossom.sql b/migrations/20230218162011_blossom.sql index c8ed09d..d8c28a3 100644 --- a/migrations/20230218162011_blossom.sql +++ b/migrations/20230218162011_blossom.sql @@ -41,7 +41,7 @@ insert into text_formats (name) values ('plaintext'), ('markdown'), ('html'); create table notes ( post_id integer not null, - text_format varchar(16) not null default ('plaintext'); + text_format varchar(16) not null default ('plaintext'), text_content text, foreign key (post_id) references posts(id), foreign key (text_format) references text_formats(name) |