ready to test

Testing

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-06-22 10:06:58 +08:00
parent bf48c95467
commit 439bb33f77
189 changed files with 17559 additions and 686 deletions
@@ -0,0 +1,35 @@
'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');
},
};