mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
11 lines
417 B
JavaScript
11 lines
417 B
JavaScript
module.exports = [
|
|
// Drop hidden column from tags table
|
|
require('./01-drop-hidden-column-from-tags'),
|
|
// Add visibility column to posts, tags, and users tables
|
|
require('./02-add-visibility-column-to-key-tables'),
|
|
// Add mobiledoc column to posts
|
|
require('./03-add-mobiledoc-column-to-posts'),
|
|
// Add social media columns to isers
|
|
require('./04-add-social-media-columns-to-users')
|
|
|
|
];
|