From b411065751644cf6b0a53c6b3bd1069197c7cd49 Mon Sep 17 00:00:00 2001 From: "jmosrael@gmail.com" Date: Sun, 5 May 2024 00:10:41 -0700 Subject: [PATCH] actually add the character list --- backend/src/app.ts | 3 +- frontend/src/vues/CharacterList.vue | 70 +++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 frontend/src/vues/CharacterList.vue 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 @@ + + + + +