Magento 2自动从自定义模块创建自定义表

时间:2015-12-16 09:49:21

标签: model magento2 magento-2.0

我刚从Magento 1.7升级。我成功创建了模块,控制器,帮助器等。

今天我尝试使用自定义表创建模型。我希望自动创建表。我做了以下步骤:

我创建了一个具有以下目录结构的模块:

<Ashutosh>
  <Pandey>
      <etc>
          module.xml
      <Model>
      <Setup>
          InstallSchema.php

以下是每个文件的内容:

InstallSchema.php

<?php

namespace Ashutosh\Pandey\Setup;

use Magento\Framework\Setup\InstallSchemaInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;
use Magento\Framework\DB\Ddl\Table;

class InstallSchema implements InstallSchemaInterface
{
    public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
    {
        $installer = $setup;
        $installer->startSetup();

        // Get table
        $tableName = $installer->getTable('ashutosh_friends');

        // Check if the table already exists
        if ($installer->getConnection()->isTableExists($tableName) != true) {
            // Create tutorial_simplenews table
            $table = $installer->getConnection()
                ->newTable($tableName)
                ->addColumn(
                    'id',
                    Table::TYPE_INTEGER,
                    null,
                    [
                        'identity' => true,
                        'unsigned' => true,
                        'nullable' => false,
                        'primary' => true
                    ],
                    'ID'
                )
                ->addColumn(
                    'name',
                    Table::TYPE_TEXT,
                    null,
                    ['nullable' => false, 'default' => ''],
                    'Title'
                )
                ->addColumn(
                    'friend_type',
                    Table::TYPE_TEXT,
                    null,
                    ['nullable' => false, 'default' => ''],
                    'Summary'
                )
                ->addColumn(
                    'created_at',
                    Table::TYPE_DATETIME,
                    null,
                    ['nullable' => false],
                    'Created At'
                )
                ->addColumn(
                    'status',
                    Table::TYPE_SMALLINT,
                    null,
                    ['nullable' => false, 'default' => '0'],
                    'Status'
                )
                ->setComment('Ashutosh Friends Table')
                ->setOption('type', 'InnoDB')
                ->setOption('charset', 'utf8');
            $installer->getConnection()->createTable($table);
        }

        $installer->endSetup();
    }
}

module.xml

<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
    <module name="Ashutosh_Pandey" setup_version="1.0.0" active="true"/>
</config>

然后在我的magento2目录的命令提示符下,我执行了命令:

php bin/magento setup:upgrade

命令成功运行但未创建表。 然后我还执行了命令:

php bin/magento setup:db-schema:upgrade

但仍然没有发生。

注意:如果我在数据库中手动创建表,我可以成功读取表。

3 个答案:

答案 0 :(得分:3)

Magento将module.xml中指定的模块版本与数据库表setup_module中的条目进行匹配。您可以尝试删除自定义模块的条目,当使用php bin / magento setup时,该模块应该触发magento再次运行安装脚本:upgrade

select * from core_config_data;

delete from setup_module where module="<YOURMODULE>";

答案 1 :(得分:0)

更改

if ($installer->getConnection()->isTableExists($tableName) != true) {

if (!$installer->getConnection()->isTableExists($tableName)) {

if ($installer->getConnection()->isTableExists($tableName) !== true) {

差异很小。见http://php.net/manual/en/language.operators.comparison.php

答案 2 :(得分:0)

由于该模块已经安装,因此您需要使用UpgradeSchema.php。

基本上与InstallSchema.php相同,但函数名称已重命名为upgrade,并且实现了类UpgradeSchemaInterface而不是InstallSchemaInterface

然后运行magento setup:upgrade,它将运行

这是一个有关magento的问题,here已回答