diff --git a/backend/src/app.ts b/backend/src/app.ts index 737654b..f3009f4 100644 --- a/backend/src/app.ts +++ b/backend/src/app.ts @@ -18,7 +18,8 @@ const Character = sequelize.define( characterName: { type: DataTypes.TEXT }, playerName: { type: DataTypes.TEXT }, role: { type: DataTypes.TEXT }, - creationDate: { type: DataTypes.INTEGER } + creationDate: { type: DataTypes.INTEGER }, + status: { type: DataTypes.TEXT } }, { timestamps: false } ) diff --git a/frontend/src/vues/CharacterList.vue b/frontend/src/vues/CharacterList.vue new file mode 100644 index 0000000..fb1534d --- /dev/null +++ b/frontend/src/vues/CharacterList.vue @@ -0,0 +1,70 @@ + + + + + ID + Character + Role + Player + Status + Last Game + + + + + + {{ character.id }} + + + {{ character.characterName }} + + {{ character.role }} + {{ character.playerName }} + {{ character.status }} + {{ character.lastGame }} + 0 + + + + pp + np + + + + +