about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20190805064643_create_bookmark_tags.rb5
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