我从github获得了世界各国,各州和城市的几个.sql文件。如何使用Laravel的种子文件运行它们来填充我的数据库中的那些表?
答案 0 :(得分:46)
DB::unprepared()
添加到DatabaseSeeder
的运行方法。在命令行运行php artisan db:seed
。
class DatabaseSeeder extends Seeder {
public function run()
{
Eloquent::unguard();
$this->call('UserTableSeeder');
$this->command->info('User table seeded!');
$path = 'app/developer_docs/countries.sql';
DB::unprepared(file_get_contents($path));
$this->command->info('Country table seeded!');
}
}
答案 1 :(得分:4)
我找到了一个从数据库表和行创建种子文件的包。它目前支持Laravel 4和5:
https://github.com/orangehill/iseed
最后,它基本上就像这样简单:
php artisan iseed my_table
或多次:
php artisan iseed my_table,another_table
答案 2 :(得分:1)
@Andre Koper解决方案是可以理解的,但遗憾的是它对我不起作用。 这个有点令人困惑,但至少对我有用。
所以我不是使用DB :: unprepared,而是这样:
// DatabaseSeeder.php
class DatabaseSeeder extends Seeder {
public function run()
{
// Set the path of your .sql file
$sql = storage_path('a_id_territory.sql');
// You must change this one, its depend on your mysql bin.
$db_bin = "C:\wamp64\bin\mariadb\mariadb10.3.14\bin";
// PDO Credentials
$db = [
'username' => env('DB_USERNAME'),
'password' => env('DB_PASSWORD'),
'host' => env('DB_HOST'),
'database' => env('DB_DATABASE')
];
exec("{$db_bin}\mysql --user={$db['username']} --password={$db['password']} --host={$db['host']} --database {$db['database']} < $sql");
}
}
然后在迁移数据库时只需添加--seed
php artisan migrate:refresh --seed
或
php artisan migrate:fresh --seed
在Laravel 7.0.x上测试
答案 3 :(得分:0)
正如其他答案所使用的,DB::unprepared
并不总是适用于更复杂的SQL文件。
另一种解决方案是使用MySQL cli:
$process = new Process([
'mysql',
'-h',
DB::getConfig('host'),
'-u',
DB::getConfig('user'),
'-p' . DB::getConfig('password'),
DB::getConfig('database'),
'-e',
"source path/to/schema.sql"
]);
$process->mustRun();