|
| 1 | +const list = [ |
| 2 | + { |
| 3 | + id: 1, |
| 4 | + author: 'OpenJS Foundation', |
| 5 | + title: 'Security Compliance Guide v1.0 - Incubating', |
| 6 | + description: 'This checklist is for projects that are in the incubating phase and have multiple maintainers.', |
| 7 | + url: 'https://openpathfinder.com/docs/checklists/openjsSCGv1.0-incubating', |
| 8 | + code_name: 'OpenJS-SCGv1.0-incubating' |
| 9 | + }, { |
| 10 | + id: 2, |
| 11 | + author: 'OpenJS Foundation', |
| 12 | + title: 'Security Compliance Guide v1.0 - Active', |
| 13 | + description: 'This checklist is for projects that are in the active phase and have multiple maintainers.', |
| 14 | + url: 'https://openpathfinder.com/docs/checklists/openjsSCGv1.0-active', |
| 15 | + code_name: 'OpenJS-SCGv1.0-active' |
| 16 | + }, { |
| 17 | + id: 3, |
| 18 | + author: 'OpenJS Foundation', |
| 19 | + title: 'Security Compliance Guide v1.0 - Retiring', |
| 20 | + description: 'This checklist is for projects that are in the retiring phase and have multiple maintainers.', |
| 21 | + url: 'https://openpathfinder.com/docs/checklists/openjsSCGv1.0-retiring', |
| 22 | + code_name: 'OpenJS-SCGv1.0-retiring' |
| 23 | + }, { |
| 24 | + id: 4, |
| 25 | + author: 'OpenJS Foundation', |
| 26 | + title: 'Security Compliance Guide v1.0 - Solo Maintainers incubating', |
| 27 | + description: 'This checklist is for projects that are in the incubating phase and have a solo maintainer.', |
| 28 | + url: 'https://openpathfinder.com/docs/checklists/openjsSCGv1.0-solo-incubating', |
| 29 | + code_name: 'OpenJS-SCGv1.0-solo-incubating' |
| 30 | + }, { |
| 31 | + id: 5, |
| 32 | + author: 'OpenJS Foundation', |
| 33 | + title: 'Security Compliance Guide v1.0 - Solo Maintainers Active', |
| 34 | + description: 'This checklist is for projects that are in the active phase and have a solo maintainer.', |
| 35 | + url: 'https://openpathfinder.com/docs/checklists/openjsSCGv1.0-solo-active', |
| 36 | + code_name: 'OpenJS-SCGv1.0-solo-active' |
| 37 | + }, { |
| 38 | + id: 6, |
| 39 | + author: 'OpenJS Foundation', |
| 40 | + title: 'Security Compliance Guide v1.0 - Solo Maintainers Retiring', |
| 41 | + description: 'This checklist is for projects that are in the retiring phase and have a solo maintainer.', |
| 42 | + url: 'https://openpathfinder.com/docs/checklists/openjsSCGv1.0-solo-retiring', |
| 43 | + code_name: 'OpenJS-SCGv1.0-solo-retiring' |
| 44 | + } |
| 45 | +] |
| 46 | + |
| 47 | +exports.up = async (knex) => { |
| 48 | + await knex('compliance_checklists').insert(list) |
| 49 | +} |
| 50 | + |
| 51 | +exports.down = async (knex) => { |
| 52 | + await knex('compliance_checklists').del() |
| 53 | +} |
0 commit comments