yii2 installation - migrate command not working(yii2 安装 - 迁移命令不起作用)
问题描述
我正在尝试在 ubuntu 中安装 yii2.
I am trying to install yii2 in ubuntu.
yii2 迁移命令不起作用
yii2 migrate command not working
yii migrate
我收到以下错误
php yii /var/www/event-tracking/migrate
PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/ming.ini on line 1 in Unknown on line 0
Could not open input file: yii
推荐答案
安装应用程序后,您必须进行以下步骤来初始化已安装的应用程序.您只需要一次性完成这些操作.
After you install the application, you have to conduct the following steps to initialize the installed application. You only need to do these once for all.
执行init
命令并选择dev作为环境.
Execute the init
command and select dev as environment.
php /path/to/yii-application/init
创建一个新数据库并相应地调整common/config/main-local.php
中的components.db 配置.
Create a new database and adjust the components.db configuration in common/config/main-local.php
accordingly.
使用控制台命令应用迁移:
Apply migrations with console command:
yii 迁移
或 Windows:
or for windows:
php yii migrate
这个命令应该在你的数据库中创建表 User,and Migration
This command should create the table User,and Migration in your database
ref [Yii2 文档]
这篇关于yii2 安装 - 迁移命令不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:yii2 安装 - 迁移命令不起作用
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01