Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

These are recommended changes to the Roller Mobile design. First, a fix for the mobile-specific field in the Weblog object and corresponding website table. Introduce a new WebpageTemplate WeblogTheme class and corresponding table rol_weblogtheme like this:

Code Block
create table rol_weblogthemeweblogstheme (
    id              varchar(48)  not null primary key,
    weblogid varchar(48) not null,    
    name            varchar(255)  not null,
    custom          $db.BOOLEAN_SQL_TYPE_FALSE not null,
    #columnNotNullWithDefault('type' 'varchar(16)' 'standard')
);

...