2020/**
2121 * @psalm-api
2222 */
23- #[AddColumn(table: 'mail_mailboxes ' , name: 'rpid ' , type: ColumnType::STRING )]
24- #[AddColumn(table: 'mail_mailboxes ' , name: 'rid ' , type: ColumnType::STRING )]
23+ #[AddColumn(table: 'mail_mailboxes ' , name: 'remote_parent_id ' , type: ColumnType::STRING )]
24+ #[AddColumn(table: 'mail_mailboxes ' , name: 'remote_id ' , type: ColumnType::STRING )]
2525#[AddColumn(table: 'mail_mailboxes ' , name: 'state ' , type: ColumnType::STRING )]
2626class Version5800Date20260401000002 extends SimpleMigrationStep {
2727
@@ -35,15 +35,15 @@ class Version5800Date20260401000002 extends SimpleMigrationStep {
3535 public function changeSchema (IOutput $ output , Closure $ schemaClosure , array $ options ): ?ISchemaWrapper {
3636 $ schema = $ schemaClosure ();
3737 $ mailboxesTable = $ schema ->getTable ('mail_mailboxes ' );
38- if (!$ mailboxesTable ->hasColumn ('rpid ' )) {
39- $ mailboxesTable ->addColumn ('rpid ' , Types::STRING , [
38+ if (!$ mailboxesTable ->hasColumn ('remote_parent_id ' )) {
39+ $ mailboxesTable ->addColumn ('remote_parent_id ' , Types::STRING , [
4040 'length ' => 255 ,
4141 'notnull ' => false ,
4242 'default ' => null ,
4343 ]);
4444 }
45- if (!$ mailboxesTable ->hasColumn ('rid ' )) {
46- $ mailboxesTable ->addColumn ('rid ' , Types::STRING , [
45+ if (!$ mailboxesTable ->hasColumn ('remote_id ' )) {
46+ $ mailboxesTable ->addColumn ('remote_id ' , Types::STRING , [
4747 'length ' => 255 ,
4848 'notnull ' => false ,
4949 'default ' => null ,
0 commit comments