@@ -66,7 +66,7 @@ public function addToSchema(BaseSchema $schema)
66
66
protected function addClassTable ()
67
67
{
68
68
$ table = $ this ->createTable ($ this ->options ['class_table_name ' ]);
69
- $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => ' auto ' ));
69
+ $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => true ));
70
70
$ table ->addColumn ('class_type ' , 'string ' , array ('length ' => 200 ));
71
71
$ table ->setPrimaryKey (array ('id ' ));
72
72
$ table ->addUniqueIndex (array ('class_type ' ));
@@ -79,7 +79,7 @@ protected function addEntryTable()
79
79
{
80
80
$ table = $ this ->createTable ($ this ->options ['entry_table_name ' ]);
81
81
82
- $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => ' auto ' ));
82
+ $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => true ));
83
83
$ table ->addColumn ('class_id ' , 'integer ' , array ('unsigned ' => true ));
84
84
$ table ->addColumn ('object_identity_id ' , 'integer ' , array ('unsigned ' => true , 'notnull ' => false ));
85
85
$ table ->addColumn ('field_name ' , 'string ' , array ('length ' => 50 , 'notnull ' => false ));
@@ -107,7 +107,7 @@ protected function addObjectIdentitiesTable()
107
107
{
108
108
$ table = $ this ->createTable ($ this ->options ['oid_table_name ' ]);
109
109
110
- $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => ' auto ' ));
110
+ $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => true ));
111
111
$ table ->addColumn ('class_id ' , 'integer ' , array ('unsigned ' => true ));
112
112
$ table ->addColumn ('object_identifier ' , 'string ' , array ('length ' => 100 ));
113
113
$ table ->addColumn ('parent_object_identity_id ' , 'integer ' , array ('unsigned ' => true , 'notnull ' => false ));
@@ -144,7 +144,7 @@ protected function addSecurityIdentitiesTable()
144
144
{
145
145
$ table = $ this ->createTable ($ this ->options ['sid_table_name ' ]);
146
146
147
- $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => ' auto ' ));
147
+ $ table ->addColumn ('id ' , 'integer ' , array ('unsigned ' => true , 'autoincrement ' => true ));
148
148
$ table ->addColumn ('identifier ' , 'string ' , array ('length ' => 200 ));
149
149
$ table ->addColumn ('username ' , 'boolean ' );
150
150
0 commit comments