Skip to content

Commit

Permalink
Fred 1.1.0-beta4
Browse files Browse the repository at this point in the history
  • Loading branch information
theboxer committed Jun 24, 2019
1 parent dc868f9 commit 581d121
Show file tree
Hide file tree
Showing 9 changed files with 193 additions and 193 deletions.
2 changes: 1 addition & 1 deletion _build/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"lowCaseName": "fred",
"description": "Frontend Editor",
"author": "John Peca",
"version": "1.1.0-beta3",
"version": "1.1.0-beta4",
"package": {
"menus": [
{
Expand Down
2 changes: 1 addition & 1 deletion core/components/fred/model/fred/fred.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
class Fred
{
const VERSION = '1.1.0-beta';
const VERSION = '1.1.0-beta4';

public $modx = null;
public $namespace = 'fred';
Expand Down
74 changes: 37 additions & 37 deletions core/components/fred/model/fred/mysql/fredblueprint.map.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
'version' => '0.1',
'table' => 'fred_blueprints',
'extends' => 'xPDOSimpleObject',
'tableMeta' =>
'tableMeta' =>
array (
'engine' => 'InnoDB',
),
'fields' =>
'fields' =>
array (
'name' => NULL,
'uuid' => NULL,
Expand All @@ -24,47 +24,47 @@
'createdBy' => 0,
'data' => '',
),
'fieldMeta' =>
'fieldMeta' =>
array (
'name' =>
'name' =>
array (
'dbtype' => 'varchar',
'precision' => '127',
'phptype' => 'string',
'null' => false,
),
'uuid' =>
'uuid' =>
array (
'dbtype' => 'varchar',
'precision' => '36',
'phptype' => 'string',
'null' => false,
'index' => 'unique',
),
'description' =>
'description' =>
array (
'dbtype' => 'varchar',
'precision' => '255',
'phptype' => 'string',
'null' => false,
'default' => '',
),
'image' =>
'image' =>
array (
'dbtype' => 'text',
'phptype' => 'string',
'null' => false,
'default' => '',
),
'category' =>
'category' =>
array (
'dbtype' => 'int',
'attributes' => 'unsigned',
'precision' => '10',
'phptype' => 'integer',
'null' => false,
),
'rank' =>
'rank' =>
array (
'dbtype' => 'int',
'attributes' => 'unsigned',
Expand All @@ -73,7 +73,7 @@
'null' => false,
'default' => 0,
),
'complete' =>
'complete' =>
array (
'dbtype' => 'tinyint',
'attributes' => 'unsigned',
Expand All @@ -82,15 +82,15 @@
'null' => false,
'default' => 0,
),
'public' =>
'public' =>
array (
'dbtype' => 'tinyint',
'precision' => '1',
'phptype' => 'boolean',
'null' => false,
'default' => 0,
),
'createdBy' =>
'createdBy' =>
array (
'dbtype' => 'int',
'attributes' => 'unsigned',
Expand All @@ -99,115 +99,115 @@
'null' => false,
'default' => 0,
),
'data' =>
'data' =>
array (
'dbtype' => 'mediumtext',
'phptype' => 'json',
'null' => false,
'default' => '',
),
),
'fieldAliases' =>
'fieldAliases' =>
array (
'content' => 'data',
),
'indexes' =>
'indexes' =>
array (
'uuid' =>
'uuid' =>
array (
'alias' => 'uuid',
'primary' => false,
'unique' => true,
'type' => 'BTREE',
'columns' =>
'columns' =>
array (
'uuid' =>
'uuid' =>
array (
'length' => '',
'collation' => 'A',
'null' => false,
),
),
),
'category' =>
'category' =>
array (
'alias' => 'category',
'primary' => false,
'unique' => false,
'type' => 'BTREE',
'columns' =>
'columns' =>
array (
'category' =>
'category' =>
array (
'length' => '',
'collation' => 'A',
'null' => false,
),
),
),
'rank' =>
'rank' =>
array (
'alias' => 'rank',
'primary' => false,
'unique' => false,
'type' => 'BTREE',
'columns' =>
'columns' =>
array (
'rank' =>
'rank' =>
array (
'length' => '',
'collation' => 'A',
'null' => false,
),
),
),
'complete' =>
'complete' =>
array (
'alias' => 'complete',
'primary' => false,
'unique' => false,
'type' => 'BTREE',
'columns' =>
'columns' =>
array (
'complete' =>
'complete' =>
array (
'length' => '',
'collation' => 'A',
'null' => false,
),
),
),
'createdBy' =>
'createdBy' =>
array (
'alias' => 'createdBy',
'primary' => false,
'unique' => false,
'type' => 'BTREE',
'columns' =>
'columns' =>
array (
'createdBy' =>
'createdBy' =>
array (
'length' => '',
'collation' => 'A',
'null' => false,
),
),
),
'name_category' =>
'name_category' =>
array (
'alias' => 'name_category',
'primary' => false,
'unique' => true,
'type' => 'BTREE',
'columns' =>
'columns' =>
array (
'name' =>
'name' =>
array (
'length' => '',
'collation' => 'A',
'null' => false,
),
'category' =>
'category' =>
array (
'length' => '',
'collation' => 'A',
Expand All @@ -216,17 +216,17 @@
),
),
),
'aggregates' =>
'aggregates' =>
array (
'User' =>
'User' =>
array (
'class' => 'modUser',
'local' => 'user',
'foreign' => 'id',
'cardinality' => 'one',
'owner' => 'foreign',
),
'Category' =>
'Category' =>
array (
'class' => 'FredBlueprintCategory',
'local' => 'category',
Expand Down
Loading

0 comments on commit 581d121

Please sign in to comment.