Skip to content
Snippets Groups Projects
Commit 1511ae75 authored by Wilson JALLET's avatar Wilson JALLET :money_with_wings:
Browse files

Added posts table to db

parent e7200a84
No related branches found
No related tags found
No related merge requests found
[![pipeline status](https://gitlab.binets.fr/br/sigma-backend/badges/master/pipeline.svg)](https://gitlab.binets.fr/br/sigma-backend/commits/master) [![pipeline status](https://gitlab.binets.fr/br/sigma-backend/badges/master/pipeline.svg)](https://gitlab.binets.fr/br/sigma-backend/commits/master)
## Introduction # Introduction
Ce dépôt contient le _backend_ de Sigma, le successeur de Frankiz, un site étudiant permettant de gérer les groupes et les étudiants du plateau de Saclay. Ce dépôt contient le _backend_ de Sigma, le successeur de Frankiz, un site étudiant permettant de gérer les groupes et les étudiants du plateau de Saclay.
......
exports.up = function(knex, Promise) {
return knex.schema.createTable('posts', function (table) {
table.timestamps(true,true);
table.increments('id');
table.string('title').notNullable();
table.text('description');
table.specificType('authors', knex.raw('varchar(128)[]')).notNullable();
});
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('posts');
};
...@@ -17,12 +17,6 @@ exports.seed = function(knex, Promise) { ...@@ -17,12 +17,6 @@ exports.seed = function(knex, Promise) {
website: 'binet-jtx.com', website: 'binet-jtx.com',
school: 'polytechnique', school: 'polytechnique',
parentuid: 'kes' parentuid: 'kes'
},{
name: 'Faerix',
uid: 'faerix',
website: 'faerix.net',
school: 'polytechnique',
parentuid: 'kes'
},{ },{
name: 'Kès', name: 'Kès',
uid: 'kes', uid: 'kes',
......
exports.seed = function(knex, Promise) {
// Deletes ALL existing entries
return knex('posts').del()
.then(function () {
const posts = [{
title: "Fissurer c'est bien",
description: "Les nouveaux ordis du JTX sont arrivés ! Le BR aide à les installer ;)",
authors: ['br','jtx']
},{
title: "Proj'et Promotion",
description: "La nouvelle proj' du JTX arrive !",
authors: ['br']
}];
return knex('posts').insert(posts);
});
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment