UNPKG

ghost

Version:

The professional publishing platform

10 lines (8 loc) 468 B
const {addTable} = require('../../utils'); module.exports = addTable('members_status_events', { id: {type: 'string', maxlength: 24, nullable: false, primary: true}, member_id: {type: 'string', maxlength: 24, nullable: false, references: 'members.id', cascadeDelete: true}, from_status: {type: 'string', maxlength: 50, nullable: true}, to_status: {type: 'string', maxlength: 50, nullable: true}, created_at: {type: 'dateTime', nullable: false} });