rails
1class AddImageNameToUsers < ActiveRecord::Migration[6.0] 2 def change 3 add_column :users, :image_name, :string 4 end 5end
マイグレーションファイルに変更を加えて
rails db:migrate を実行しても
/home/takeshi/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/actionpack-6.0.2.2/lib/action_dispatch/middleware/stack.rb:37: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
/home/takeshi/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/actionpack-6.0.2.2/lib/action_dispatch/middleware/static.rb:110: warning: The called method `initialize' is defined here
と表示され コンソール等で確認してもテーブルにカラムが追加されていません。
ActiveRecord::Schema.define(version: 2020_04_26_010842) do create_table "users", force: :cascade do |t| t.string "name" t.string "email" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false end end ``` どこに間違いがありますか?他に方法はありますか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。