Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | public function up(Schema $schema, QueryBag $queries) |
||
17 | { |
||
18 | $table = $schema->getTable('orocrm_account'); |
||
19 | $column = $table->getColumn('extend_description'); |
||
20 | $column->setOptions( |
||
21 | [ |
||
22 | OroOptions::KEY => [ |
||
23 | 'form' => ['type' => 'oro_resizeable_rich_text'], |
||
24 | 'view' => ['type' => 'html'] |
||
25 | ] |
||
26 | ] |
||
27 | ); |
||
28 | } |
||
29 | } |
||
30 |