@@ -24,22 +24,22 @@ discard block |
||
| 24 | 24 | $installer->startSetup(); |
| 25 | 25 | |
| 26 | 26 | $table = $installer->getConnection() |
| 27 | - ->newTable($installer->getTable(self::CONFIG_TABLE)) |
|
| 28 | - ->addColumn( |
|
| 29 | - 'id', |
|
| 30 | - \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER, |
|
| 31 | - null, |
|
| 32 | - ['identity' => true, 'unsigned' => true, 'nullable' => |
|
| 33 | - false, 'primary' => true], |
|
| 34 | - 'Entity ID' |
|
| 35 | - ) |
|
| 36 | - ->addColumn( |
|
| 37 | - 'config', |
|
| 38 | - \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
|
| 39 | - 60, |
|
| 40 | - ['nullable' => false], |
|
| 41 | - 'Config' |
|
| 42 | - ) |
|
| 27 | + ->newTable($installer->getTable(self::CONFIG_TABLE)) |
|
| 28 | + ->addColumn( |
|
| 29 | + 'id', |
|
| 30 | + \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER, |
|
| 31 | + null, |
|
| 32 | + ['identity' => true, 'unsigned' => true, 'nullable' => |
|
| 33 | + false, 'primary' => true], |
|
| 34 | + 'Entity ID' |
|
| 35 | + ) |
|
| 36 | + ->addColumn( |
|
| 37 | + 'config', |
|
| 38 | + \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
|
| 39 | + 60, |
|
| 40 | + ['nullable' => false], |
|
| 41 | + 'Config' |
|
| 42 | + ) |
|
| 43 | 43 | ->addColumn( |
| 44 | 44 | 'value', |
| 45 | 45 | \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | ['nullable' => false], |
| 48 | 48 | 'Value' |
| 49 | 49 | ) |
| 50 | - ->setComment('Pagantis config table'); |
|
| 50 | + ->setComment('Pagantis config table'); |
|
| 51 | 51 | |
| 52 | 52 | $installer->getConnection()->createTable($table); |
| 53 | 53 | |