Method: Sequel::Schema::CreateTableGenerator#Fixnum
- Defined in:
- lib/sequel/database/schema_generator.rb
#Fixnum(name, opts = OPTS) ⇒ Object
Use custom Fixnum method to use Integer instead of Fixnum class, to avoid warnings on ruby 2.4+.
51 52 53 |
# File 'lib/sequel/database/schema_generator.rb', line 51 def Fixnum(name, opts=OPTS) column(name, Integer, opts) end |