Hello,
How can i use Db\Column to create a field (using createTable method) with NULL or 0 value? Right now all variants cause an error and according zep code of method https://github.com/phalcon/cphalcon/blob/master/phalcon/db/dialect/mysql.zep default value wrapped by quotes. Temporary i've solved a problem by following way, but i'll be happy if someone can introduce a better solution.
new Db\Column("active_to", [ "type" => Db\Column::TYPE_TIMESTAMP, 'default' => '0000-00-00 00:00:00' ] ),
Thank you.