Drop unused BUR title column

This commit is contained in:
BrokenEagle
2020-03-18 22:56:38 +00:00
parent c16ad4f126
commit 09445cb28b
4 changed files with 10 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
class DropTitleFromBulkUpdateRequests < ActiveRecord::Migration[6.0]
def change
remove_column :bulk_update_requests, :title, :text, null: false, default: ""
end
end

View File

@@ -669,8 +669,7 @@ CREATE TABLE public.bulk_update_requests (
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
approver_id integer,
forum_post_id integer,
title text
forum_post_id integer
);
@@ -7370,6 +7369,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20200306202253'),
('20200307021204'),
('20200309035334'),
('20200309043653');
('20200309043653'),
('20200318224633');