diff --git a/crates/app/src/public/html/components.lisp b/crates/app/src/public/html/components.lisp
index 1c87a44..7b7efcf 100644
--- a/crates/app/src/public/html/components.lisp
+++ b/crates/app/src/public/html/components.lisp
@@ -289,7 +289,7 @@
("class" "flex gap-1 reactions_box")
("hook" "check_reactions")
("hook-arg:id" "{{ post.id }}")
- (text "{% if post.context.reactions_enabled -%} {% if post.content|length > 0 -%} {{ self::likes(id=post.id, asset_type=\"Post\", likes=post.likes, dislikes=post.dislikes) }} {%- endif %} {%- endif %} {% if post.context.repost and post.context.repost.reposting -%}")
+ (text "{% if post.context.reactions_enabled -%} {% if post.content|length > 0 or post.uploads|length > 0 -%} {{ self::likes(id=post.id, asset_type=\"Post\", likes=post.likes, dislikes=post.dislikes) }} {%- endif %} {%- endif %} {% if post.context.repost and post.context.repost.reposting -%}")
(a
("href" "/post/{{ post.context.repost.reposting }}")
("class" "button small camo")
diff --git a/sql_changes/posts_circle.sql b/sql_changes/posts_stack.sql
similarity index 64%
rename from sql_changes/posts_circle.sql
rename to sql_changes/posts_stack.sql
index 9d8d312..9cd3474 100644
--- a/sql_changes/posts_circle.sql
+++ b/sql_changes/posts_stack.sql
@@ -1,5 +1,5 @@
ALTER TABLE posts
-ADD COLUMN circle BIGINT NOT NULL DEFAULT 0;
+DROP COLUMN circle;
ALTER TABLE posts
ADD COLUMN stack BIGINT NOT NULL DEFAULT 0;