StormExamples\One\Relational\BloggingDatabase::CreateTables PHP Метод

CreateTables() защищенный Метод

protected CreateTables ( )
    protected function CreateTables()
    {
        $this->Blogs = new Tables\Blogs();
        $this->Authors = new Tables\Authors();
        $this->Posts = new Tables\Posts();
        $this->Tags = new Tables\Tags();
        $this->PostTags = new Tables\PostTags();
    }