This PR moves the entire project to Typescript. Due to the ~1000 ignores this will lead to a messy codebase for a while, but the churn is worth it – all of those ignore comments are places that were never type-safe previously. closes #1282
40 lines
874 B
JavaScript
40 lines
874 B
JavaScript
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.createTable("apiKeys", {
|
|
id: {
|
|
type: "UUID",
|
|
allowNull: false,
|
|
primaryKey: true,
|
|
},
|
|
name: {
|
|
type: "CHARACTER VARYING",
|
|
allowNull: true,
|
|
},
|
|
secret: {
|
|
type: "CHARACTER VARYING",
|
|
allowNull: false,
|
|
unique: true,
|
|
},
|
|
userId: {
|
|
type: "UUID",
|
|
allowNull: true,
|
|
},
|
|
createdAt: {
|
|
type: "TIMESTAMP WITH TIME ZONE",
|
|
allowNull: false,
|
|
},
|
|
updatedAt: {
|
|
type: "TIMESTAMP WITH TIME ZONE",
|
|
allowNull: false,
|
|
},
|
|
deletedAt: {
|
|
type: "TIMESTAMP WITH TIME ZONE",
|
|
allowNull: true,
|
|
},
|
|
});
|
|
},
|
|
down: async (queryInterface, Sequelize) => {
|
|
await queryInterface.dropTable("apiKeys");
|
|
},
|
|
};
|