1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00
pasty/internal/storage/postgres/migrations/000002_rename_deletion_token.up.sql
2021-06-28 18:35:30 +02:00

5 lines
101 B
PL/PgSQL

begin;
alter table if exists "pastes" rename column "deletionToken" to "modificationToken";
commit;