diff --git a/db/migrations/20240211024145_neighbourhood.sql b/db/migrations/20240211024145_neighbourhood.sql new file mode 100644 index 0000000..2a27c41 --- /dev/null +++ b/db/migrations/20240211024145_neighbourhood.sql @@ -0,0 +1,6 @@ +-- migrate:up + +update bgg_user set neighbourhood = 'Beacon Hill' where username = 'gamingduo2'; + +-- migrate:down + diff --git a/db/schema.sql b/db/schema.sql index fb2d8a8..b986dad 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -19,4 +19,5 @@ INSERT INTO "schema_migrations" (version) VALUES ('20240201201248'), ('20240204153045'), ('20240205142447'), - ('20240206141649'); + ('20240206141649'), + ('20240211024145');