Updated Jules Jordan scraper.
This commit is contained in:
11
migrations/_20230703000556_campaign_html.js
Normal file
11
migrations/_20230703000556_campaign_html.js
Normal file
@@ -0,0 +1,11 @@
|
||||
exports.up = async (knex) => {
|
||||
await knex.schema.alterTable('banners', (table) => {
|
||||
table.text('html');
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = async (knex) => {
|
||||
await knex.schema.alterTable('banners', (table) => {
|
||||
table.dropColumn('html');
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user