You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
748 B
36 lines
748 B
'use strict';
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.createTable('Fishes', {
|
|
id: {
|
|
allowNull: false,
|
|
autoIncrement: true,
|
|
primaryKey: true,
|
|
type: Sequelize.INTEGER
|
|
},
|
|
name: {
|
|
type: Sequelize.STRING
|
|
},
|
|
color: {
|
|
type: Sequelize.STRING
|
|
},
|
|
length: {
|
|
type: Sequelize.STRING
|
|
},
|
|
speed: {
|
|
type: Sequelize.STRING
|
|
},
|
|
createdAt: {
|
|
allowNull: false,
|
|
type: Sequelize.DATE
|
|
},
|
|
updatedAt: {
|
|
allowNull: false,
|
|
type: Sequelize.DATE
|
|
}
|
|
});
|
|
},
|
|
async down(queryInterface, Sequelize) {
|
|
await queryInterface.dropTable('Fishes');
|
|
}
|
|
}; |