Method: DBGeni::Migrator::Mysql#code_errors

Defined in:
lib/dbgeni/migrators/mysql.rb

#code_errorsObject



42
43
44
45
46
47
48
49
# File 'lib/dbgeni/migrators/mysql.rb', line 42

def code_errors
  # In mysql the code errors ar just the same as migration errors

  errors = migration_errors
  if errors == ''
    errors = nil
  end
  errors
end