File: version.rb

package info (click to toggle)
ruby-activerecord-import 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 840 kB
  • sloc: ruby: 4,698; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class SchemaInfo < ActiveRecord::Base
  if respond_to?(:table_name=)
    self.table_name = 'schema_info'
  else
    # this is becoming deprecated in ActiveRecord but not all adapters supported it
    # at this time
    set_table_name 'schema_info'
  end
  VERSION = 12
end