How create column TIMESTAMP DEFAULT NULL?
new Column('created_at', [
'type' => Column::TYPE_TIMESTAMP,
'notNull' => false
]),
not work
new Column('created_at', [
'type' => Column::TYPE_TIMESTAMP,
'notNull' => false,
'default' => "NULL"
]),
not work too