1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Railsからdynamodb-localにレコードを作成したい

Last updated at Posted at 2023-02-14

はじめに

railsからdynamodb-localにレコードを作成しようとしたところ、以下のエラーが発生しました。

NameError (undefined local variable or method `options' for #<Class:0x000055c518ea1860>)

これはmodelでApplicationRecordを継承していたことが原因でした。

classに記載している「< ApplicationRecord」を削除して再度レコードを作成すると成功しました。
以下が正しいコードです。

class Hoge
  include Dynamoid::Document

  table name: :hoges, key: :id, capacity_mode: :on_demand
  field :title, :string
    
    略
end
> Hoge.create(id: '1', title: 'test')

おわりに

rails g model Hogeでmodelを作成してしまっていたのが原因でした。
今回はdynamoidを使用するため、ActiveRecordは継承しないことに注意が必要でした。

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?