Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

#2: Post edited by user avatar Monica Cellio‭ · 2024-06-27T19:37:00Z (3 months ago)
  • In my dev environment I'm editing the flags in `db/seeds/post_flag_types.yml`. After editing I run `rails db:seed`, which adds my new flag. Fine so far.
  • However, I had a typo in the name, so I edited to fix it, ran `rails db:seed` again, and now I have _two_ flags. Running seeds *added* flags it didn't already know about, but didn't detect the *absence* of a previously-defined flag and remove it.
  • I understand why that's desirable as a default; we wouldn't want to nuke flags that have actually been used without considering the effects on flag history. But in this case, I want to override -- I want to tell `db:seed` to forget what it knows and load these flags anew.
  • How do I do that?
  • In my dev environment I'm editing the flags in `db/seeds/post_flag_types.yml`. After editing I run `rails db:seed`, which adds my new flag. Fine so far.
  • However, I had a typo in the name, so I edited to fix it, ran `rails db:seed` again, and now I have _two_ flags. Running seeds *added* flags it didn't already know about, but didn't detect the *absence* of a previously-defined flag and remove it.
  • I understand why that's desirable as a default; we wouldn't want to nuke flags that have actually been used without considering the effects on flag history. But in this case, I want to override -- I want to tell `db:seed` to forget what it knows and load these flags anew.
  • How do I do that? I found `UPDATE_POSTS=true rails db:seed` in a section about updating the seeded help and that doesn't *sound* like it would apply, but I tried it anyway. As expected, it didn't replace the flag seeds.
#1: Initial revision by user avatar Monica Cellio‭ · 2024-06-27T19:32:34Z (3 months ago)
How do I force db:seed to forget previous context and load only what is in the flags YAML file?
In my dev environment I'm editing the flags in `db/seeds/post_flag_types.yml`.  After editing I run `rails db:seed`, which adds my new flag.  Fine so far.

However, I had a typo in the name, so I edited to fix it, ran `rails db:seed` again, and now I have _two_ flags.  Running seeds *added* flags it didn't already know about, but didn't detect the *absence* of a previously-defined flag and remove it.

I understand why that's desirable as a default; we wouldn't want to nuke flags that have actually been used without considering the effects on flag history.  But in this case, I want to override -- I want to tell `db:seed` to forget what it knows and load these flags anew.

How do I do that?