diff options
| author | 2025-08-30 00:36:46 +0700 | |
|---|---|---|
| committer | 2025-08-30 00:36:46 +0700 | |
| commit | 78fe4481099fcf6666f1a259e38d9d828a253347 (patch) | |
| tree | c4f8bc344da8a26536fb85d5fb3fec891bdf7eb6 /migrations/1_create_stats_tables.down.sql | |
| parent | 753fe7f1d5bf837a85481425bd6bf6b431ffb611 (diff) | |
| download | web-78fe4481099fcf6666f1a259e38d9d828a253347.tar.gz web-78fe4481099fcf6666f1a259e38d9d828a253347.zip | |
feat: add persistent storage for likes
Diffstat (limited to 'migrations/1_create_stats_tables.down.sql')
| -rw-r--r-- | migrations/1_create_stats_tables.down.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/migrations/1_create_stats_tables.down.sql b/migrations/1_create_stats_tables.down.sql new file mode 100644 index 0000000..ee4593c --- /dev/null +++ b/migrations/1_create_stats_tables.down.sql @@ -0,0 +1,2 @@ +DROP TABLE IF EXISTS blog_views; +DROP TABLE IF EXISTS blog_likes; |