|
@@ -9,7 +9,7 @@ discard block |
|
|
block discarded – undo |
|
9
|
9
|
return array( |
|
10
|
10
|
'table' => array( |
|
11
|
11
|
|
|
12
|
|
- 'fe_users_address' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
|
12
|
+ 'fe_users_address' => function( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
13
|
13
|
|
|
14
|
14
|
$table = $schema->createTable( 'fe_users_address' ); |
|
15
|
15
|
|
|
@@ -39,7 +39,7 @@ discard block |
|
|
block discarded – undo |
|
39
|
39
|
$table->addColumn( 'latitude', 'float', array( 'notnull' => false ) ); |
|
40
|
40
|
$table->addColumn( 'mtime', 'datetime', [] ); |
|
41
|
41
|
$table->addColumn( 'ctime', 'datetime', [] ); |
|
42
|
|
- $table->addColumn( 'editor', 'string', array('length' => 255 ) ); |
|
|
42
|
+ $table->addColumn( 'editor', 'string', array( 'length' => 255 ) ); |
|
43
|
43
|
|
|
44
|
44
|
$table->setPrimaryKey( array( 'id' ), 'pk_t3feuad_id' ); |
|
45
|
45
|
$table->addIndex( array( 'parentid' ), 'idx_t3feuad_pid' ); |
|
@@ -53,7 +53,7 @@ discard block |
|
|
block discarded – undo |
|
53
|
53
|
return $schema; |
|
54
|
54
|
}, |
|
55
|
55
|
|
|
56
|
|
- 'fe_users_list_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
|
56
|
+ 'fe_users_list_type' => function( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
57
|
57
|
|
|
58
|
58
|
$table = $schema->createTable( 'fe_users_list_type' ); |
|
59
|
59
|
|
|
@@ -77,7 +77,7 @@ discard block |
|
|
block discarded – undo |
|
77
|
77
|
return $schema; |
|
78
|
78
|
}, |
|
79
|
79
|
|
|
80
|
|
- 'fe_users_list' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
|
80
|
+ 'fe_users_list' => function( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
81
|
81
|
|
|
82
|
82
|
$table = $schema->createTable( 'fe_users_list' ); |
|
83
|
83
|
|
|
@@ -103,7 +103,7 @@ discard block |
|
|
block discarded – undo |
|
103
|
103
|
return $schema; |
|
104
|
104
|
}, |
|
105
|
105
|
|
|
106
|
|
- 'fe_users_property_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
|
106
|
+ 'fe_users_property_type' => function( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
107
|
107
|
|
|
108
|
108
|
$table = $schema->createTable( 'fe_users_property_type' ); |
|
109
|
109
|
|
|
@@ -127,7 +127,7 @@ discard block |
|
|
block discarded – undo |
|
127
|
127
|
return $schema; |
|
128
|
128
|
}, |
|
129
|
129
|
|
|
130
|
|
- 'fe_users_property' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
|
130
|
+ 'fe_users_property' => function( \Doctrine\DBAL\Schema\Schema $schema ) { |
|
131
|
131
|
|
|
132
|
132
|
$table = $schema->createTable( 'fe_users_property' ); |
|
133
|
133
|
|