diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-05 01:53:59 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-05 01:53:59 -0500 |
commit | 1cd9fea3b5a8b87df7fc2c102c102bca7519151a (patch) | |
tree | 8f673aacf7bf8443405870aa4bee59b0a0fceefe /db | |
parent | 879166633c3e2d8df656c678349a71e86c647b5d (diff) |
add ability to access bookmarks from #self.bookmarks tag
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20190805064643_create_bookmark_tags.rb | 5 |
1 files changed, 5 insertions, 0 deletions
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 |