1 code examples of PHP Oro\Bundle\ContactUsBundle\Migrations\Schema\v1_10\CreateActivityAssociation extracted from open source projects

Was this example useful?
0
                                                    /**
     * @inheritdoc
     */
    public function up(Schema $schema, QueryBag $queries)
    {
        /** Tables generation **/
        $this->createOrocrmContactusContactRsnTable($schema);
        $this->createOrocrmContactReasonTitlesTable($schema);
        $this->createOrocrmContactusReqEmailsTable($schema);
        $this->createOrocrmContactusRequestTable($schema);

        /** Foreign keys generation **/
        $this->addOrocrmContactusReqEmailsForeignKeys($schema);
        $this->addOrocrmContactusRequestForeignKeys($schema);

        OroContactUsBundle::addOwner($schema);

        CreateActivityAssociation::addEmailAssociations($schema, $this->activityExtension);
    }
                                            
CreateActivityAssociation's Other Methods
CreateActivityAssociation's Other Methods