octopod/migrations/revert/migrate_2.0.sql
iko 0336964bab
Refactored queries to not be strings (#68)
* Rel8ed backend

* Removed rel8 dependency from common

* Format frontend

* Made frontend compile

* Migrations

* Fixed Actions encoding

* Fixed timeout

* Fixed overrides

* Fixed deployment duration

* Fixed inserting deployment logs

* Removed postgresql-simple

* Fixed octo CLI
2021-08-26 18:14:29 +03:00

13 lines
154 B
PL/PgSQL

-- Revert octopod:migrate_2.0 from pg
BEGIN;
DO LANGUAGE 'plpgsql'
$$
BEGIN
RAISE EXCEPTION 'Revert not supported for this migration';
END
$$;
COMMIT;