DEPRECATION WARNING on save with ruby and active_record

前端 未结 2 1687
清酒与你
清酒与你 2021-01-24 15:09

I am new to ruby and writing a small script that requires writing messages to a database log.

I am using ruby 1.9.3 with active_record but without rails. All select stat

2条回答
  •  独厮守ぢ
    2021-01-24 16:03

    I think your class should be as follows:

    class ActLog < ActiveRecord::Base
      self.primary_key = 'ID'
      self.table_name = 'ActLog'
    end
    

    Out of curiosity, why the non-standard names?

提交回复
热议问题