diff --git a/src/Database/Migrations/v002/UpdateOrganisationMembersTable.php b/src/Database/Migrations/v002/UpdateOrganisationMembersTable.php new file mode 100644 index 0000000..ab0ad7c --- /dev/null +++ b/src/Database/Migrations/v002/UpdateOrganisationMembersTable.php @@ -0,0 +1,51 @@ +schema->hasTable('organisation_members')) { + $this->schema->table('organisation_members', function (Blueprint $table) { + $table->integer('flag_approved')->unsigned(); + }); + } + } + + /** + * {@inheritdoc} + */ + public function down() + { + $this->schema->table('organisation_members', function (Blueprint $table) { + $table->dropColumn('flag_approved'); + }); + } +}