2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
class AutoId < ActiveRecord::Base
|
2013-07-25 06:54:12 -04:00
|
|
|
self.table_name = "auto_id_tests"
|
2013-07-25 07:49:00 -04:00
|
|
|
self.primary_key = "auto_id"
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|