From d26839aa061237bd9a8b43479f93b9c76a41327a Mon Sep 17 00:00:00 2001 From: Gabriel Paradiso Date: Wed, 20 Dec 2023 15:30:16 +0100 Subject: [PATCH] chore: removing allowlist migration from this pr --- .../migrate/migrations/0216_functions_allowlist.sql | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 core/store/migrate/migrations/0216_functions_allowlist.sql diff --git a/core/store/migrate/migrations/0216_functions_allowlist.sql b/core/store/migrate/migrations/0216_functions_allowlist.sql deleted file mode 100644 index fc7541cd67f..00000000000 --- a/core/store/migrate/migrations/0216_functions_allowlist.sql +++ /dev/null @@ -1,11 +0,0 @@ --- +goose Up --- +goose StatementBegin -CREATE TABLE functions_allowlist( - allowed_address bytea CHECK (octet_length(allowed_address) = 20) PRIMARY KEY -); --- +goose StatementEnd - --- +goose Down --- +goose StatementBegin -DROP TABLE IF EXISTS functions_allowlist; --- +goose StatementEnd