migration_lang.php 715 B

12345678910111213
  1. <?php
  2. $lang['migration_none_found'] = "No migrations were found.";
  3. $lang['migration_not_found'] = "This migration could not be found.";
  4. $lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d.";
  5. $lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could not be found.";
  6. $lang['migration_missing_up_method'] = "The migration class \"%s\" is missing an 'up' method.";
  7. $lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'down' method.";
  8. $lang['migration_invalid_filename'] = "Migration \"%s\" has an invalid filename.";
  9. /* End of file migration_lang.php */
  10. /* Location: ./system/language/english/migration_lang.php */