martin-mikac/csv-to-phinx-seeder
最新稳定版本:1.6.6
Composer 安装命令:
composer require martin-mikac/csv-to-phinx-seeder
包简介
A simple way to seed your database from a csv file using phinx
README 文档
README
Instalation
$ composer require martin-mikac/phinx-csv-seeder
Requirements
- PHP 5.6 or higher
- robmorgan/phinx version 0.12.4 or higher
Usage
Basic usage:
<?php use BackEndTea\MigrationHelper\CsvSeeder; class UserSeeder extends CsvSeeder { public function run() { $this->insertCsv('users', __DIR__ . '/users.csv'); } }
Will try and insert all csv records into the given table. The keys in the csv file are required to match the keys in the database. Any values for a row not specified become their defaults.
统计信息
- 总下载量: 7.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-09-23