# huodong **Repository Path**: think-php/huodong ## Basic Information - **Project Name**: huodong - **Description**: 节日活动预定系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-29 - **Last Updated**: 2021-06-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README php>=7.3 增加vendor文件 composer install --ignore-platform-reqs // 数据库迁移 // --database 指定数据库连接(下同) // --force 当处于生产环境时强制执行,不询问(下同) // --path 指定单独迁移文件地址 // --pretend 把将要运行的 SQL 语句打印出来(下同) // --seed Seed 任务是否需要被重新运行(下同) php artisan migrate [--database[="..."]] [--force] [--path[="..."]] [--pretend] [--seed] // 创建迁移数据库表 - php artisan migrate:install [--database[="..."]] // 回滚最最近一次运行的迁移任务 - php artisan migrate:rollback [--database[="..."]] [--force] [--pretend]