- commit
- a827ced
- parent
- ee49456
- author
- Eric Bower
- date
- 2024-08-19 20:33:14 +0000 UTC
chore(pgs): add projects.blocked col Sometimes users have sites that violate our ToS. We can delete the content but if they have a script that will reupload it will automatically recreate the site. So we need a way to prevent uploads to projects.
2 files changed,
+3,
-1
M
Makefile
+2,
-1
1@@ -123,10 +123,11 @@ migrate:
2 $(DOCKER_CMD) exec -i $(DB_CONTAINER) psql -U $(PGUSER) -d $(PGDATABASE) < ./sql/migrations/20240221_add_project_acl.sql
3 $(DOCKER_CMD) exec -i $(DB_CONTAINER) psql -U $(PGUSER) -d $(PGDATABASE) < ./sql/migrations/20240311_add_public_key_name.sql
4 $(DOCKER_CMD) exec -i $(DB_CONTAINER) psql -U $(PGUSER) -d $(PGDATABASE) < ./sql/migrations/20240324_add_analytics_table.sql
5+ $(DOCKER_CMD) exec -i $(DB_CONTAINER) psql -U $(PGUSER) -d $(PGDATABASE) < ./sql/migrations/20240819_add_projects_blocked.sql
6 .PHONY: migrate
7
8 latest:
9- $(DOCKER_CMD) exec -i $(DB_CONTAINER) psql -U $(PGUSER) -d $(PGDATABASE) < ./sql/migrations/20240324_add_analytics_table.sql
10+ $(DOCKER_CMD) exec -i $(DB_CONTAINER) psql -U $(PGUSER) -d $(PGDATABASE) < ./sql/migrations/20240819_add_projects_blocked.sql
11 .PHONY: latest
12
13 psql:
1@@ -0,0 +1 @@
2+ALTER TABLE projects ADD COLUMN blocked varchar(256) NOT NULL DEFAULT '';