Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
neonwatty committed Nov 7, 2024
1 parent c39bc24 commit 498427a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rails_app/db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@

# create two tags
my_tag_name = "tag_one"
tag_one = TagName.new({ name: my_tag_name, color: "amber" })
tag_one = TagName.new({ name: my_tag_name, color: "#ef4444" })
tag_one.save!

my_tag_name = "tag_two"
tag_two = TagName.new({ name: my_tag_name, color: "red" })
tag_two = TagName.new({ name: my_tag_name, color: "#d946ef" })
tag_two.save!

# tag a few images with these tags
Expand Down

0 comments on commit 498427a

Please sign in to comment.