mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
36 lines
865 B
JavaScript
36 lines
865 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.createTable('page_templates', {
|
|
id: {
|
|
type: Sequelize.BIGINT,
|
|
autoIncrement: true,
|
|
primaryKey: true,
|
|
},
|
|
name: {
|
|
type: Sequelize.STRING(255),
|
|
allowNull: false,
|
|
},
|
|
thumbnail_url: {
|
|
type: Sequelize.TEXT,
|
|
allowNull: true,
|
|
},
|
|
structure: {
|
|
type: Sequelize.JSON,
|
|
allowNull: true,
|
|
comment: 'Full snapshot of sections and blocks for this template.',
|
|
},
|
|
created_at: {
|
|
type: Sequelize.DATE,
|
|
allowNull: false,
|
|
defaultValue: Sequelize.literal('CURRENT_TIMESTAMP'),
|
|
},
|
|
});
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.dropTable('page_templates');
|
|
},
|
|
};
|