Added Meiden van Holland and Vurig Vlaanderen.
This commit is contained in:
19
migrations/20230629052143_actor_orientation.js
Normal file
19
migrations/20230629052143_actor_orientation.js
Normal file
@@ -0,0 +1,19 @@
|
||||
exports.up = async (knex) => {
|
||||
await knex.schema.alterTable('actors', (table) => {
|
||||
table.text('orientation');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
table.text('orientation');
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = async (knex) => {
|
||||
await knex.schema.alterTable('actors', (table) => {
|
||||
table.dropColumn('orientation');
|
||||
});
|
||||
|
||||
await knex.schema.alterTable('actors_profiles', (table) => {
|
||||
table.dropColumn('orientation');
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user