How to use enums in Ruby on Rails

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ธ.ค. 2024

ความคิดเห็น • 14

  • @AnkitChauhan-rs6qm
    @AnkitChauhan-rs6qm ปีที่แล้ว

    your explanation on enum was awesome .

  • @carltanner3632
    @carltanner3632 2 ปีที่แล้ว +1

    Hi Andy, thanks for the help with reminding the details with enums today.

  • @stpaquet
    @stpaquet 2 ปีที่แล้ว +3

    I would also add an index on the status. As you mentioned you often use this value to filter records in the database. So indexing this column would improve speed.

    • @Webcrunch
      @Webcrunch  2 ปีที่แล้ว +1

      Good call 👌

  • @AndreaBarghigiani
    @AndreaBarghigiani 2 ปีที่แล้ว +2

    Good to know that you're back Andy, learning a lot from your videos. Looking for your in-depth tutorials on Hotwire as well 😉
    Def gonna buy your 'Hello Rails' if/when you'll update it for Rails 7 💪

    • @Webcrunch
      @Webcrunch  2 ปีที่แล้ว

      Thanks for the kind words. The course is a big one to update but I'm hoping to find the time soon!

  • @waleedamjad7185
    @waleedamjad7185 2 ปีที่แล้ว

    can we use enum with buttons to change the value of enums?

    • @Webcrunch
      @Webcrunch  2 ปีที่แล้ว +1

      Not directly, but you can hook up some routes and controllers and respond to update an enum very quickly using a button.
      Each enum comes with short-hand methods for changing to that specific value.
      i.e., A Blog post with enums:
      @post.published! or @post.draft!
      A Blog post without enums:
      @post.update(status: "published")
      There's more than that to them though. Check out the API docs: api.rubyonrails.org/v5.1/classes/ActiveRecord/Enum.html

    • @waleedamjad7185
      @waleedamjad7185 2 ปีที่แล้ว +1

      @@Webcrunch thanks alot sir❤️❤️

  • @waleedamjad7185
    @waleedamjad7185 2 ปีที่แล้ว

    Plz can you tell me which plugins and themes are you using for your terminal....BTW big fan of yours

    • @Webcrunch
      @Webcrunch  2 ปีที่แล้ว +1

      Just published a detailed guide here th-cam.com/video/pZaID7YroXg/w-d-xo.html

    • @waleedamjad7185
      @waleedamjad7185 2 ปีที่แล้ว

      Thanks alot

  • @lucky765
    @lucky765 2 ปีที่แล้ว +2

    Are u back Andy ? Long time no videos from you

    • @Webcrunch
      @Webcrunch  2 ปีที่แล้ว +4

      I am! Took a much needed break but excited to get back to it.