定制 martin-mikac/csv-to-phinx-seeder 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-09-23