From 68aa523ba84c809681fc0d85631f00a3f42c2ee0 Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Thu, 11 Jul 2019 16:39:36 +0300 Subject: [PATCH] Remove unused DB column It is absent in production-like envs, therefore no migration. --- db/structure.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/db/structure.sql b/db/structure.sql index d1f379a74c..befd74afd3 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -492,8 +492,7 @@ CREATE TABLE public.bank_transactions ( created_at timestamp without time zone, updated_at timestamp without time zone, creator_str character varying, - updator_str character varying, - in_directo boolean DEFAULT false + updator_str character varying );