Files
starr-philproperties/database/migrations/20260101000045-create-page-templates.js
T
kennethobsequio 439bb33f77 ready to test
Testing

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
2026-06-22 10:06:58 +08:00

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');
},
};