table('apikeys', [ 'id' => false, 'primary_key' => ['id'], 'engine' => 'InnoDB', 'encoding' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'comment' => '', 'row_format' => 'DYNAMIC', ]) ->changeColumn('created_at', 'timestamp', [ 'null' => true, 'default' => 'current_timestamp()', 'after' => 'apikey', ]) ->save(); } }