5e6a1c418a
A user might need to import several files on database creation. Currently the module only allows the import of a single file. This commit allows one to, from now on, import severals. Before : mysql::db { 'test' : sql => '/tmp/my_import1.sql', } Now : mysql::db { 'test' : sql => [ '/tmp/my_import1.sql', '/tmp/my_import2.sql', ] } |
||
---|---|---|
.. | ||
mysql_db_spec.rb |