Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class Version20201215142608 extends AbstractMigrationChamilo |
||
13 | { |
||
14 | public function getDescription(): string |
||
17 | } |
||
18 | |||
19 | public function up(Schema $schema): void |
||
22 | ALTER TABLE c_quiz |
||
23 | ADD IF NOT EXISTS display_chart_degree_certainty INT DEFAULT 0 NOT NULL, |
||
24 | ADD IF NOT EXISTS send_email_chart_degree_certainty INT DEFAULT 0 NOT NULL, |
||
25 | ADD IF NOT EXISTS not_display_balance_percentage_categorie_question INT DEFAULT 0 NOT NULL, |
||
26 | ADD IF NOT EXISTS display_chart_degree_certainty_category INT DEFAULT 0 NOT NULL, |
||
27 | ADD IF NOT EXISTS gather_questions_categories INT DEFAULT 0 NOT NULL |
||
28 | "); |
||
29 | } |
||
30 | |||
31 | public function down(Schema $schema): void |
||
43 |