From 16fd21f7cfa625ceffa6e16b3d407180ab0e9b16 Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Sun, 2 Sep 2018 21:20:41 +0300 Subject: [PATCH] Revert "Add notification text tag" This reverts commit 00167a781d65d949709431dad89f51b7da65dfd3. --- db/migrate/20180825153657_add_text_tag_to_notifications.rb | 5 ----- db/structure.sql | 5 +---- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 db/migrate/20180825153657_add_text_tag_to_notifications.rb diff --git a/db/migrate/20180825153657_add_text_tag_to_notifications.rb b/db/migrate/20180825153657_add_text_tag_to_notifications.rb deleted file mode 100644 index 4e528468b..000000000 --- a/db/migrate/20180825153657_add_text_tag_to_notifications.rb +++ /dev/null @@ -1,5 +0,0 @@ -class AddTextTagToNotifications < ActiveRecord::Migration - def change - add_column :notifications, :text_tag, :string - end -end diff --git a/db/structure.sql b/db/structure.sql index b93136de2..21d39236e 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -2007,8 +2007,7 @@ CREATE TABLE public.notifications ( created_at timestamp without time zone, updated_at timestamp without time zone, creator_str character varying, - updator_str character varying, - text_tag character varying + updator_str character varying ); @@ -4779,5 +4778,3 @@ INSERT INTO schema_migrations (version) VALUES ('20180824092855'); INSERT INTO schema_migrations (version) VALUES ('20180824102834'); -INSERT INTO schema_migrations (version) VALUES ('20180825153657'); -