From 1cd9fea3b5a8b87df7fc2c102c102bca7519151a Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Mon, 5 Aug 2019 01:53:59 -0500 Subject: add ability to access bookmarks from #self.bookmarks tag --- db/migrate/20190805064643_create_bookmark_tags.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20190805064643_create_bookmark_tags.rb (limited to 'db/migrate') diff --git a/db/migrate/20190805064643_create_bookmark_tags.rb b/db/migrate/20190805064643_create_bookmark_tags.rb new file mode 100644 index 000000000..b21029581 --- /dev/null +++ b/db/migrate/20190805064643_create_bookmark_tags.rb @@ -0,0 +1,5 @@ +class CreateBookmarkTags < ActiveRecord::Migration[5.2] + def up + %w(self.bookmarks .self.bookmarks).each { |name| Tag.find_or_create_by(name: name) } + end +end -- cgit