基本/迁移

基本迁移系统

2.1.3 2018-10-16 00:42 UTC

README

📝 基本迁移系统

Composer

composer require basic/migration

安装

Migration 通过依赖注入工作。因此,需要安装并配置 Medoo

<?php
require 'vendor/autoload.php';
//$db=Instância do Medoo
$Migration=new Basic\Migration($db);

表格示例

文本文件的名称是表格的名称。表格应存储在位于 /vendor 目录上一级的 /table 目录中。

table/user

id
name
email
password
token
token_expiration

删除所有表格

$Migration->dropAll();

迁移所有表格

$Migration->migrateAll();

清空所有表格

$Migration->truncateAll();