Show
Ignore:
Timestamp:
03/09/07 01:25:30 (3 years ago)
Author:
eevee
Message:

Pokedex data is now included in dumps again. Dammit. Oh, and it now has one entry per row, so at the very least it's more readable and diffs won't be insane.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/script/dump_sql.pl

    r41 r42  
    2525 
    2626for my $table_group (@table_groups) { 
    27     system mysqldump => qw/--skip-quote-names -d/, 
     27    system mysqldump => qw/--skip-quote-names/, 
     28        ( $table_group eq 'pokedex' ? '--skip-extended-insert' : '-d' ),  # cheap cheap hack to make sure Pokedex gets its data 
    2829        '-r' => "$table_group.sql", 
    2930        '-u' => $db_user,