adminizer 4.3.0-build.88 → 4.3.0-build.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -104,6 +104,8 @@ export async function up({ context }) {
104
104
  await context.createTable("groupapuserap", {
105
105
  UserAPId: { type: DataTypes.INTEGER, allowNull: false, references: { model: "userap", key: "id" } },
106
106
  GroupAPId: { type: DataTypes.INTEGER, allowNull: false, references: { model: "groupap", key: "id" } },
107
+ createdAt: { type: DataTypes.DATE, allowNull: false, defaultValue: DataTypes.NOW },
108
+ updatedAt: { type: DataTypes.DATE, allowNull: false, defaultValue: DataTypes.NOW },
107
109
  });
108
110
  }
109
111
  export async function down({ context }) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adminizer",
3
3
  "type": "module",
4
- "version": "4.3.0-build.88",
4
+ "version": "4.3.0-build.89",
5
5
  "main": "index.js",
6
6
  "exports": {
7
7
  ".": "./index.js",