Class: ActiveRecord::ConnectionAdapters::TableDefinition

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/connection_adapters/ibm_db_adapter.rb

Instance Method Summary collapse

Instance Method Details

#bigint(*args) ⇒ Object



387
388
389
390
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 387

def bigint(*args)
  ibm_parse_column_attributes_args('bigint',*args)
  return self
end

#char(*args) ⇒ Object Also known as: character

Method to support the new syntax of rails 2.0 migrations (short-hand definitions) for columns of type char [character]



393
394
395
396
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 393

def char(*args)
  ibm_parse_column_attributes_args('char',*args)
  return self
end

#decfloat(*args) ⇒ Object

Method to support the new syntax of rails 2.0 migrations (short-hand definitions) for columns of type decfloat



372
373
374
375
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 372

def decfloat(*args)
  ibm_parse_column_attributes_args('decfloat',*args)
  return self
end

#double(*args) ⇒ Object

Method to support the new syntax of rails 2.0 migrations (short-hand definitions) for columns of type double



366
367
368
369
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 366

def double(*args)
  ibm_parse_column_attributes_args('double',*args)
  return self
end

#graphic(*args) ⇒ Object



377
378
379
380
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 377

def graphic(*args)
  ibm_parse_column_attributes_args('graphic',*args)
  return self
end

#vargraphic(*args) ⇒ Object



382
383
384
385
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 382

def vargraphic(*args)
  ibm_parse_column_attributes_args('vargraphic',*args)
  return self
end

#xml(*args) ⇒ Object

Method to support the new syntax of rails 2.0 migrations for columns of type xml



360
361
362
363
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 360

def xml(*args )
  ibm_parse_column_attributes_args('xml', *args)
  return self
end