mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 22:54:47 +02:00
Add notification text tag
This commit is contained in:
parent
412641cdb0
commit
00167a781d
2 changed files with 9 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddTextTagToNotifications < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :notifications, :text_tag, :string
|
||||
end
|
||||
end
|
|
@ -2006,7 +2006,8 @@ CREATE TABLE public.notifications (
|
|||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone,
|
||||
creator_str character varying,
|
||||
updator_str character varying
|
||||
updator_str character varying,
|
||||
text_tag character varying
|
||||
);
|
||||
|
||||
|
||||
|
@ -4769,3 +4770,5 @@ INSERT INTO schema_migrations (version) VALUES ('20180823212823');
|
|||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180824102834');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180825153657');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue