mirror of
https://github.com/penpot/penpot.git
synced 2025-05-31 17:46:11 +02:00
🔥 Remove legacy system user and team.
This commit is contained in:
parent
dd6bd6bbff
commit
874378869d
3 changed files with 8 additions and 2 deletions
|
@ -13,8 +13,9 @@
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
- Fixes problem with pan and space [#811](https://github.com/penpot/penpot/issues/811)
|
- Fix problem with pan and space [#811](https://github.com/penpot/penpot/issues/811)
|
||||||
- Fixes issue when parsing exponential numbers in paths
|
- Fix issue when parsing exponential numbers in paths
|
||||||
|
- Remove legacy system user and team [#843](https://github.com/penpot/penpot/issues/843)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
|
|
||||||
|
|
|
@ -163,6 +163,9 @@
|
||||||
|
|
||||||
{:name "0051-mod-file-library-rel-table"
|
{:name "0051-mod-file-library-rel-table"
|
||||||
:fn (mg/resource "app/migrations/sql/0051-mod-file-library-rel-table.sql")}
|
:fn (mg/resource "app/migrations/sql/0051-mod-file-library-rel-table.sql")}
|
||||||
|
|
||||||
|
{:name "0052-del-legacy-user-and-team"
|
||||||
|
:fn (mg/resource "app/migrations/sql/0052-del-legacy-user-and-team.sql")}
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
DELETE FROM team WHERE id = '00000000-0000-0000-0000-000000000000';
|
||||||
|
DELETE FROM profile WHERE id = '00000000-0000-0000-0000-000000000000';
|
Loading…
Add table
Add a link
Reference in a new issue