From 6f12455af8b1e256e9320a739fc391ee060501ff Mon Sep 17 00:00:00 2001 From: anatole <anatole.romon@polytechnique.edu> Date: Sun, 4 Mar 2018 15:57:11 +0100 Subject: [PATCH] migration : ajout d'une column type pour les groupes --- .../20180304154225_group_type_column.js | 17 +++++++++++++++++ db/seeds/01_create_groups.js | 18 ++++++++++++------ db/seeds/04_make_metagroups.js | 6 ++++-- 3 files changed, 33 insertions(+), 8 deletions(-) create mode 100644 db/migrations/20180304154225_group_type_column.js diff --git a/db/migrations/20180304154225_group_type_column.js b/db/migrations/20180304154225_group_type_column.js new file mode 100644 index 0000000..61f2aaa --- /dev/null +++ b/db/migrations/20180304154225_group_type_column.js @@ -0,0 +1,17 @@ + +exports.up = function(knex, Promise) { + return knex.schema.table('groups', function(table) { + table.enum('type', ['simple', 'meta', 'error']).notNullable().defaultTo('error'); + }).then( () => { + return knex('simple_groups').update({type : "simple"}).then(() => { + return knex('meta_groups').update({type : "meta"}); + }); + }); + +}; + +exports.down = function(knex, Promise) { + return knex.schema.table('groups', function(table) { + table.dropColumn('type'); + }); +}; diff --git a/db/seeds/01_create_groups.js b/db/seeds/01_create_groups.js index 35948da..26b1012 100644 --- a/db/seeds/01_create_groups.js +++ b/db/seeds/01_create_groups.js @@ -12,34 +12,40 @@ exports.seed = function(knex, Promise) { website: 'br.binets.fr', description: 'Le Binet Réseau est responsable du réseau internet des élèves sur le campus de l\'Ecole polytechnique.', school: 'polytechnique', - parentuid: 'kes' + parentuid: 'kes', + type : 'simple' },{ name: 'JTX', uid: 'jtx', website: 'binet-jtx.com', school: 'polytechnique', - parentuid: 'kes' + parentuid: 'kes', + type : 'simple' },{ name: 'Kès', uid: 'kes', website: 'kes.binets.fr', - school: 'polytechnique' + school: 'polytechnique', + type : 'simple' },{ name: 'DaTA', uid: 'data', website: 'data-ensta.fr', school: 'ensta', - parentuid: 'bdeensta' + parentuid: 'bdeensta', + type : 'simple' },{ name: 'Laser Wave', uid: 'laserwave', website: 'laserwave.fr', - school: 'supoptique' + school: 'supoptique', + type : 'simple' },{ name: 'BDE Ensta', uid: 'bdeensta', website: 'http://bde.ensta-paristech.fr/', - school: 'ensta' + school: 'ensta', + type : 'simple' } ]; diff --git a/db/seeds/04_make_metagroups.js b/db/seeds/04_make_metagroups.js index be6fbea..432bb33 100644 --- a/db/seeds/04_make_metagroups.js +++ b/db/seeds/04_make_metagroups.js @@ -9,12 +9,14 @@ exports.seed = function(knex, Promise) { name: 'Fédérez', uid: 'federez', website: 'federez.io', - description: "L'association de toutes les associations de réseau des écoles" + description: "L'association de toutes les associations de réseau des écoles", + type : 'meta' }, { name: 'BSCkBl', uid: 'bsckbl', - website: 'bsckbl.binets.fr' + website: 'bsckbl.binets.fr', + type : 'meta' } ]); }); -- GitLab