Use new code style

This commit is contained in:
David Stone
2025-02-07 19:02:33 -07:00
parent 0181024ae1
commit 8433379d90
672 changed files with 37107 additions and 45249 deletions

View File

@ -37,7 +37,7 @@ class Posts_Schema extends Schema {
'unsigned' => true,
'extra' => 'auto_increment',
'primary' => true,
'sortable' => true
'sortable' => true,
),
array(
@ -51,35 +51,35 @@ class Posts_Schema extends Schema {
'name' => 'type',
'type' => 'varchar',
'searchable' => true,
'sortable' => true
'sortable' => true,
),
array(
'name' => 'slug',
'type' => 'varchar',
'searchable' => true,
'sortable' => true
'sortable' => true,
),
array(
'name' => 'title',
'type' => 'varchar',
'searchable' => true,
'sortable' => true
'sortable' => true,
),
array(
'name' => 'content',
'type' => 'longtext',
'default' => '',
'searchable' => true
'searchable' => true,
),
array(
'name' => 'excerpt',
'type' => 'longtext',
'default' => '',
'searchable' => true
'searchable' => true,
),
array(
@ -121,5 +121,4 @@ class Posts_Schema extends Schema {
),
);
} // end class Posts_Schema;
}