0

First part of my schema.rb

ActiveRecord::Schema[7.0].define(version: 2022_09_25_175429) do
  create_table "book", force: :cascade do |t|
    t.text "name"
    t.text "description"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.string "genre"
    t.index "\"tags\"", name: "index_formulas_on_tags"
  end

As you can see, tags has escaped quotes in it. How do I fix this, and how did this happen in the first place? Actually, I'm now considering that this could be intentional, but I could of doubt it?

Eyeslandic
  • 14,553
  • 13
  • 41
  • 54
kevinlinxc
  • 470
  • 5
  • 20

0 Answers0