Skip to content
Snippets Groups Projects
Commit 1f03ff14 authored by Anatole ROMON's avatar Anatole ROMON
Browse files

new message tables

parent b27bd21a
No related branches found
No related tags found
No related merge requests found
exports.up = async function(knex, Promise) {
await knex.schema.dropTable('posts');
await knex.schema.table('messages', function(table){
table.dropColumn('authors');
});
await knex.schema.createTable('private_post', function(table){
table.inherits('messages');
table.string('author_uid', 128).notNullable();
table.enum('author_db', ['ldap']).notNullable().defaultTo('ldap');
table.string('recipient_uid', 128).notNullable();
});
await knex.schema.createTable('question', function(table){
table.inherits('messages');
table.string('author_uid', 128).notNullable();
table.enum('author_db', ['ldap']).notNullable().defaultTo('ldap');
table.string('recipient_uid', 128).notNullable();
});
await knex.schema.createTable('answer', function(table){
table.inherits('messages');
table.string('author_uid', 128).notNullable();
table.string('recipient_uid', 128).notNullable();
table.string('for_question', 128).notNullable();
});
return;
};
exports.down = async function(knex, Promise) {
await knex.schema.dropTable('answer');
await knex.schema.dropTable('question');
await knex.schema.dropTable('private_post');
await knex.schema.table('messages', function(table){
table.specificType('authors', knex.raw('varchar(128)[]'));
});
await knex.schema.createTable('posts', function(table) {
table.inherits('messages');
});
return;
};
......@@ -15,8 +15,6 @@ const RootTypes = `
allMessages: [Message]
message(id: ID!): Message
allPosts: [Post]
post(id: ID!): Post
allEvents: [Event]
allAnnouncements: [Announcement]
......@@ -198,7 +196,6 @@ const subQueries = `
type MessageQuery{
allMessages: [Message]
allEvents: [Event]
allPosts: [Post]
message(id: ID): Message
allAnnouncements: [Announcement]
}
......
......@@ -120,18 +120,6 @@ const Message = `
recipient: Recipient
}
# Publication postée par un ou plusieurs groupes.
type Post implements Message {
id: ID!
title: String!
createdAt: String!
updatedAt: String!
content: String!
authors: Author
recipient: Recipient
}
# Annonce publique effectuée par un ou plusieurs groupes.
type Announcement implements Message {
id: ID!
......@@ -168,6 +156,54 @@ const Message = `
authors: Author
recipient: Recipient
}
# Post interne d'un membre sur la page interne de son groupe
type PrivatePost implements Message {
id: ID!
createdAt: String!
updatedAt: String!
title: String!
content: String!
authors: User
recipient: Group
}
# Question posée par un user à un groupe
type Question implements Message {
id: ID!
createdAt: String!
updatedAt: String!
title: String!
content: String!
authors: User
recipient: Group
# Une annonce éventuellement concernée par cette question.
# Null si la question ne concerne pas une annonce particulière
forAnnouncement : Announcement
# Référence la réponse donnée par le groupe à cette Question. Si pas encore répondu, null.
forAnswer: Answer
}
# Réponse à une Question
type Answer implements Message {
id: ID!
createdAt: String!
updatedAt: String!
title: String!
content: String!
authors: Group
recipient: Group
# La question à laquelle cette Answer répond. Non-nullable bien sûr
forQuestion: Question!
}
`;
const Requests = `
......
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