init
This commit is contained in:
120
src/data/schema/ey_quickentry.php
Normal file
120
src/data/schema/ey_quickentry.php
Normal file
@@ -0,0 +1,120 @@
|
||||
<?php
|
||||
return array (
|
||||
'id' =>
|
||||
array (
|
||||
'name' => 'id',
|
||||
'type' => 'int(10)',
|
||||
'notnull' => false,
|
||||
'default' => NULL,
|
||||
'primary' => true,
|
||||
'autoinc' => true,
|
||||
),
|
||||
'title' =>
|
||||
array (
|
||||
'name' => 'title',
|
||||
'type' => 'varchar(20)',
|
||||
'notnull' => false,
|
||||
'default' => '',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'laytext' =>
|
||||
array (
|
||||
'name' => 'laytext',
|
||||
'type' => 'varchar(50)',
|
||||
'notnull' => false,
|
||||
'default' => '',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'type' =>
|
||||
array (
|
||||
'name' => 'type',
|
||||
'type' => 'smallint(5)',
|
||||
'notnull' => false,
|
||||
'default' => '0',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'controller' =>
|
||||
array (
|
||||
'name' => 'controller',
|
||||
'type' => 'varchar(20)',
|
||||
'notnull' => false,
|
||||
'default' => '',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'action' =>
|
||||
array (
|
||||
'name' => 'action',
|
||||
'type' => 'varchar(20)',
|
||||
'notnull' => false,
|
||||
'default' => '',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'vars' =>
|
||||
array (
|
||||
'name' => 'vars',
|
||||
'type' => 'varchar(100)',
|
||||
'notnull' => false,
|
||||
'default' => '',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'groups' =>
|
||||
array (
|
||||
'name' => 'groups',
|
||||
'type' => 'smallint(5)',
|
||||
'notnull' => false,
|
||||
'default' => '0',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'checked' =>
|
||||
array (
|
||||
'name' => 'checked',
|
||||
'type' => 'tinyint(4)',
|
||||
'notnull' => false,
|
||||
'default' => '0',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'status' =>
|
||||
array (
|
||||
'name' => 'status',
|
||||
'type' => 'tinyint(1)',
|
||||
'notnull' => false,
|
||||
'default' => '1',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'sort_order' =>
|
||||
array (
|
||||
'name' => 'sort_order',
|
||||
'type' => 'int(10)',
|
||||
'notnull' => false,
|
||||
'default' => '0',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'add_time' =>
|
||||
array (
|
||||
'name' => 'add_time',
|
||||
'type' => 'int(11)',
|
||||
'notnull' => false,
|
||||
'default' => '0',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
'update_time' =>
|
||||
array (
|
||||
'name' => 'update_time',
|
||||
'type' => 'int(11)',
|
||||
'notnull' => false,
|
||||
'default' => '0',
|
||||
'primary' => false,
|
||||
'autoinc' => false,
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user