Method: ActiveRecord::ConnectionAdapters::IBM_DB2_I5#remove_column
- Defined in:
- lib/active_record/connection_adapters/ibm_db_adapter.rb
#remove_column(table_name, column_name) ⇒ Object
3396 3397 3398 3399 3400 3401 3402 |
# File 'lib/active_record/connection_adapters/ibm_db_adapter.rb', line 3396 def remove_column(table_name,column_name) qcmdexc2 "QSYS/CHGJOB INQMSGRPY(*SYSRPYL)" qcmdexc2 "ADDRPYLE SEQNBR(9876) MSGID(CPA32B2) RPY(''I'')" super(table_name,column_name) qcmdexc2 "QSYS/CHGJOB INQMSGRPY(*DFT)" qcmdexc2 "RMVRPYLE SEQNBR(9876)" end |