0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-12-06 11:22:41 +01:00

Added inherit managers attribute to resources

This commit is contained in:
Jonathan Treffler 2024-11-06 17:32:33 +01:00
parent f7b3b2f255
commit fdb4b8fc76
8 changed files with 65 additions and 4 deletions

View file

@ -49,6 +49,9 @@ class Version000000Date20241014120000 extends SimpleMigrationStep {
$table->addColumn('active', Types::BOOLEAN, [
'notnull' => true,
]);
$table->addColumn('inherit_managers', Types::BOOLEAN, [
'notnull' => true,
]);
$table->addColumn('last_updated_timestamp', Types::BIGINT, [
'notnull' => true,
]);